Hybrid Inheritance in JavaIn Java, inheritance is the most important OOPs concept that allows to inherit the properties of a class into another class. in general, it defines Is-A relationship. By using the inheritance feature, we can derive a new class from an existing one. Java supports the following four types of inheritance:
In this section, we will discuss only the hybrid inheritance in Java with proper example and different approaches for hybrid inheritance implementation. Hybrid InheritanceIn general, the meaning of hybrid (mixture) is made of more than one thing. In Java, the hybrid inheritance is the composition of two or more types of inheritance. The main purpose of using hybrid inheritance is to modularize the code into well-defined classes. It also provides the code reusability. The hybrid inheritance can be achieved by using the following combinations:
How hybrid inheritance works in Java?For example, there are four classes say A, B, C, and D. Assume that the class "A" and "B" extends the class "C". Also, another class, "D," extends the class "A". Here, the class "A" is a parent class for child class "D" and is also a child class for parent class "C". we can understand the example through pictorial representation. Single and Multiple InheritanceIn the following Java program, we have achieved the hybrid inheritance by implementing the combination of single and multiple inheritance (through interfaces). In this program, we have taken the example of Human body that performs different functionalities like eating, walking, talking, dancing etc. Human body may be either Male or Female. So, Male and Female are the two interfaces of the HumanBody class. Both the child class inherits the functionalities of the HumanBody class that represents the single Inheritance. Suppose, Male and Female may have child. So, the Child class also inherits the functionalities of the Male, Female interfaces. It represents the multiple inheritance. The composition of single and multiple inheritance represents the hybrid inheritance. Let's see the implementation. Child.java Output: Implementation of Hybrid Inheritance in Java Implementation of show() method defined in interfaces Male and Female Method defined inside Child class Using Multilevel and Hierarchical InheritanceIn the following figure, GrandFather is a super class. The Father class inherits the properties of the GrandFather class. Since Father and GrandFather represents single inheritance. Further, the Father class is inherited by the Son and Daughter class. Thus, the Father becomes the parent class for Son and Daughter. These classes represent the hierarchical inheritance. Combinedly, it denotes the hybrid inheritance. Let's implement the hybrid inheritance mechanism in a Java program. Dauhter.java Output: He is son. He is father. He is grandfather. She is daughter. He is father. He is grandfather. Hierarchical and Single InheritanceIn the following Java program, we have achieved the hybrid inheritance by implementing the combination of hierarchical and single inheritance. Here class A and class B extends the class C that represents the hierarchical inheritance. On the other hand, class D extends the class A that represents the single inheritance. D.java Output: D Multiple and Multilevel InheritanceWe can also achieve hybrid inheritance by implementing the multiple and multilevel inheritance. Consider the following figure that depicts an example of hybrid inheritance. Next TopicJava IP Address (IPv4) Regex Examples |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India