Year End Sale: Get Upto 40% OFF on Live Training! Offer Ending in
D
H
M
S
Get Now
Hierarchical Inheritance in Java

Hierarchical Inheritance in Java

07 Sep 2024
Beginner
12.8K Views
11 min read
Learn with an interactive course and practical hands-on labs

Free Java Course With Certificate

Inheritance in Java: An Overview

Inheritance is one of the powerful Object-Oriented Programming concepts in Java. In which a class can inherit attributes and behaviors from superclasses. This allows systematic designing and structuring of classes, enabling access to properties of different methods or classes. 
In this Java Tutorial, we are going to discuss specifically Hierarchical Inheritance in Java, which will include What is Hierarchical Inheritance in Java? and Why Use Hierarchical Inheritance? We will also explore Hierarchical inheritance in Java with examples. So, Let's first discuss a little bit about "What is Hierarchical Inheritance ?".
Advance your career with the Java Full Stack Developer Course —learn coding, projects, and job assistance!

What is Hierarchical Inheritance in Java?

  • Hierarchical inheritance is one of the crucial types of inheritance in Object-Oriented Programming.
  • Where more than one class is derived from the parent class.
  • There is a single base class and multiple derived classes.
  • It allows users to code reusability and promotes modularity.
  • It enables the customization of classes.
  • However, changes to the base class can impact all derived classes and make the system less flexible.

Now Let's see Hierarchical Inheritance with an example in Java compiler.

Read More

Example of Hierarchical Inheritance in Java

First Let's implement Step by step so It will be easy for you

Step 1: Create the Superclass Called ParentClass

class ParentClass
{
  int PAge = 10;
}   

Step 2: Create Subclasses called ChildClass1, ChildClass2, ChildClass3.


class ChildClass1 extends ParentClass
{
  int CAge1 = 1;
}
class ChildClass2 extends ParentClass
{
  int CAge2 = 2;
}
class ChildClass3 extends ParentClass
{
  int CAge3 = 3;
}   

Step 3: Utilize the Subclasses using objects.

classMainpublicstaticvoidmain(String args[])ChildClass1C1=newChildClass1ChildClass2C2=newChildClass2ChildClass3C3=newChildClass3"PAge * CAge1 = ""PAge * CAge2 = ""PAge * CAge3 = "

class ParentClass
{
  int PAge = 10;
}
class ChildClass1 extends ParentClass
{
  int CAge1 = 1;
}
class ChildClass2 extends ParentClass
{
  int CAge2 = 2;
}
class ChildClass3 extends ParentClass
{
  int CAge3 = 3;
}
public class Main
{
  public static void main(String args[])
  {
    ChildClass1 C1 = new ChildClass1();
    ChildClass2 C2 = new ChildClass2();
    ChildClass3 C3 = new ChildClass3();

    System.out.println("PAge * CAge1 = " + C1.PAge * C1.CAge1);	
    System.out.println("PAge * CAge2 = " + C2.PAge * C2.CAge2);	
    System.out.println("PAge * CAge3 = " + C3.PAge * C3.CAge3);	
}
}   
102030
Example of Hierarchical Inheritance in Java

First We created One superclass called ParentClass And Then we Created more three classes called ChildClass1, ChildClass2, and ChildClass3 which inherit the Parent Class. These 3 classes are nothing but derived classes. As shown in the program We created objects C1, C2, and C3 of Child classes and fetched properties of Parent Class through it. That is how the hierarchy works throughout the program. Now let's take a Real-World Example of Hierarchical Inheritance in Java to understand more about it.

Real-World Example of Hierarchical Inheritance in Java

// Superclass
class Company {
  void CompanyName() {
    System.out.println("Company name is Dotnettricks.");
  }
}
// Subclass 1
class Employee1 extends Company {
  void EmployeeName1() {
    System.out.println("EmployeeName1 is Sakshi.");
  }
}
// Subclass 2
class Employee2 extends Company {
  void EmployeeName2() {
    System.out.println("EmployeeName2 is Sourav.");
  }
}
// Main class
public class Main {
  public static void main(String[] args) {
    Employee1 E1 = new Employee1();
    E1.CompanyName(); 
    E1.EmployeeName1(); 
    Employee2 E2 = new Employee2();
    E2.CompanyName(); 
    E2.EmployeeName2(); 
  }
}    

Output:

   Company name is Dotnettricks.
   EmployeeName1 is Sakshi.
   Company name is Dotnettricks.
   EmployeeName2 is Sourav. 

Program Explanation:

Real-World Example of Hierarchical Inheritance in Java

First We created One superclass called Company And Then we Created more two classes called Employee1, and Employee2 which inherit the Parent Class. Employee1 and Employee2 are derived classes. As shown in the program We created objects E1, and E2 of Derived classes and fetched properties of Parent Class "Company" through it As shown in Output.

Use of Hierarchical Inheritance in Java

  • The use of Hierarchical Inheritance in Java plays an important role. Method Overriding is one of Use of it.
  • Method Overriding occurs when the child class has the same method as declared in the parent class.
  • This is mainly used for runtime polymorphism, also known as Dynamic binding.
  • It is implemented by virtual functions and pointers.
  • Hierarchical Inheritance is also used to Increase code reusability.

Which Inheritance Is Not Supported in Java?

  • The Multiple inheritances using classes in Java are not supported.
  • Java only allows for single inheritance, where a class can inherit from only one superclass to avoid the complexities that arise from multiple inheritances.
  • There are very few situations where multiple inheritances are truly necessary.
  • So it is recommended to avoid keeping the codebase simple and manageable.
  • One of the challenges with multiple inheritances is the Diamond problem.

Advantages & Disadvantages of Hierarchical Inheritance in Java

AdvantagesDisadvantages
It allows the developer to reuse existing code in many situations. A class can be created once and it can be reused again and again to create many child classes.In Inheritance base class and child classes are tightly coupled. Hence If you change the code of the parent class, it will affect to all the child classes.
It saves a lot of time and effort to write the same classes again.In a class hierarchy, many data members remain unused and the memory allocated to them is not utilized.
A base class is already compiled and tested properly. This class can be used in a new application without compiling it again. The use of existing classes increases program reliability.It affects the performance of your program if you have not implemented inheritance correctly.

Conclusion

Hierarchical Inheritance in Java is important for managing class hierarchies. By creating a Base class that several Child classes can inherit, developers can save time and make their code more organized and efficient. This makes it easier to function. We explored all concepts related to hierarchical inheritance with its real-time example. I would like to listen to your feedback on this. Also, consider our Java Full Stack Developer Training to become a master in Java.

FAQs

In Java, hierarchical inheritance allows many classes to inherit from the same base class, increasing code reuse and consistency. It makes maintenance easier by centralizing shared functions and providing a clear organizational structure.

The Object class represents the highest level of inheritance hierarchy in Java. Every Java class implicitly derives from Object, which provides fundamental methods such as equals(), hashCode(), and toString() that are accessible to all Java objects.

A real-world example of hierarchical inheritance is a company's organizational structure. For example, a base class Employee can contain subclasses such as Manager and Developer, which inherit common traits from Employee while adding capabilities specific to their responsibilities.

In Object-Oriented Programming (OOP), a hierarchy is a systematic organization of classes in which subclasses inherit from parent classes, resulting in a treelike structure. This hierarchy enables code reuse and the establishment of a more manageable and logical class structure.

In OOP, hierarchy refers to the ordering of classes in a tree-like structure, with subclasses inheriting from parent classes. It promotes code reuse, improves organization, and allows for polymorphism by treating objects as instances of their parent classes.
Share Article
About Author
Shailendra Chauhan (Microsoft MVP, Founder & CEO at ScholarHat)

Shailendra Chauhan, Founder and CEO of ScholarHat by DotNetTricks, is a renowned expert in System Design, Software Architecture, Azure Cloud, .NET, Angular, React, Node.js, Microservices, DevOps, and Cross-Platform Mobile App Development. His skill set extends into emerging fields like Data Science, Python, Azure AI/ML, and Generative AI, making him a well-rounded expert who bridges traditional development frameworks with cutting-edge advancements. Recognized as a Microsoft Most Valuable Professional (MVP) for an impressive 9 consecutive years (2016–2024), he has consistently demonstrated excellence in delivering impactful solutions and inspiring learners.

Shailendra’s unique, hands-on training programs and bestselling books have empowered thousands of professionals to excel in their careers and crack tough interviews. A visionary leader, he continues to revolutionize technology education with his innovative approach.
Accept cookies & close this