Inheritance is a cornerstone of OOP that allows a class to inherit properties and methods from another class. In this hierarchy, the class from which properties are inherited is called the 'superclass' or 'base class', and the class that inherits these properties is known as the 'subclass' or 'derived class'.
Advantages of Inheritance
- Code Reusability: Subclasses reuse the code from superclasses, reducing redundancy.
- Scalability: It's easier to add new features by extending existing classes.
- Maintainability: Changes in the superclass can automatically propagate to subclasses, assuming they don’t override superclass methods.
Moreover, inheritance supports the concept of 'polymorphism', where subclasses can override or extend the base functionality, providing bespoke behaviors whilst still retaining the overall structure set by the superclass.