Inheritance is used to describe the relationship between classes. What are the three ways in which this relationship is advantageous?
- Subclasses that inherit from the same superclass include attributes and behaviors from the superclass. - Changes can be made easily and quickly to a large group of subclasses by making changes to the superclass they inherit from. - Code can be reused through inh.....
원문 링크 : 2.6 – Generalization