The relationship between a
superclass and a
subclass is integral to inheritance in OOP.
The superclass, sometimes called the
parent class, is the broader category that posesses features common to more specialized categories. In contrast, a subclass, also known as the
child class, is a more specific category that inherits attributes and methods from its superclass, while also having the ability to introduce additional features or override existing ones.
In the given example of the
Class Canary Extends Bird
, we have a textbook illustration of inheritance:
- Superclass (Parent): Bird
- Subclass (Child): Canary
When 'Canary' is declared to Extend 'Bird', all characteristics of 'Bird' classes flow into 'Canary'. Effectively, Canary birds are assured to have wings and the ability to fly as do all birds, but they might also differ by having a unique chirp or color – properties or methods added to the Canary class.