Introduction (class inheritance) Flashcards
Define Inheritance
Inheritance is the process by which the child class includes automatically public and protected members defined in the parent class
Define Multiple Inheritance !
Multiple inheritance refers to the ability of one class to inherit from more than one direct super class and it is not supported in java
Define Single Inheritance !
Single Inheritance refers to the ability of a class to inherit from only one super class. This means that a child class can at most have one direct parent
Give one exception to the single inheritance rule !
Multiple inheritance is allowed for interfaces in java where a class can implement multiple interfaces and an interface can extend multiple interfaces
How to prevent a class from being extended ?
We can prevent a class from being extended by marking it as final
Give a characteristic of single inheritance !
A class can be extended any number of times in java, which means that a class can have multiple direct child classes
Define Multiple levels of inheritance !
Multiple levels of inheritance refer to the ability of classes to form a hierarchical chain where each subclass can further extend another class, creating a chain of inheritance relationships.
When you have classes forming a hierarchy where each class extends the next in line forming a chain of inheritance, the last class in the chain inherits all the public and protected members from the first class in the chain