Introduction to OOP Chapter 8: Inheritance and Substitution: next previous audio real text

Specialization Inheritance

By far the most common form of inheritance is for specialization.

A good example is the Java hierarchy of Graphical components in the AWT:

Each child class overrides a method inherited from the parent in order to specialize the class in some way.
Intro OOP, Chapter 8, Slide 16