1. Inheritance
  2. Types of Inheritance
  3. Why multiple inheritance is not possible in java in case of class?



Inheritance is a mechanism in which one object acquires all the properties and behaviours of parent object.

The idea behind inheritance is that you can create new classes that are built upon existing classes. When you inherit from an existing class, you reuse (or inherit) methods and fields, and you add new methods and fields to adapt your new class to new situations.
Inheritance represents the IS-A relationship.

Why use Inheritance?

  • For Method Overriding (So Runtime Polymorphism).
  • For Code Reusability.

Syntax of Inheritance

  1. class Subclass-name extends Superclass-name  
  2. {  
  3.    //methods and fields  
  4. }  
The keyword extends indicates that you are making a new class that derives from an existing class. In the terminology of Java, a class that is inherited is called a superclass. The new class is called a subclass.


Understanding the simple example of inheritance

inheritance in java
As displayed in the above figure, Programmer is the subclass and Employee is the superclass. Relationship between two classes is Programmer IS-A Employee.It means that Programmer is a type of Employee.

  1. class Employee{  
  2.  float salary=40000;  
  3. }  
  4.   
  5. class Programmer extends Employee{  
  6.  int bonus=10000;  
  7.     
  8.  public static void main(String args[]){  
  9.    Programmer p=new Programmer();  
  10.    System.out.println("Programmer salary is:"+p.salary);  
  11.    System.out.println("Bonus of Programmer is:"+p.bonus);  
  12. }  
  13. }  
Output:Programmer salary is:40000.0
       Bonus of programmer is:10000
      

In the above example,Programmer object can access the field of own class as well as of Employee class i.e. code reusability.

Types of Inheritance

On the basis of class, there can be three types of inheritance: single, multilevel and hierarchical.
Multiple and Hybrid is supported through interface only. We will learn about interfaces later.

types of inheritance in java

Multiple inheritance is not supported in java in case of class.

When a class extends multiple classes i.e. known as multiple inheritance. For Example:

multiple inheritance in java

Que) Why multiple inheritance is not supported in java?

  • To reduce the complexity and simplify the language, multiple inheritance is not supported in java. For example:
  1. class A{  
  2. void msg(){System.out.println("Hello");}  
  3. }  
  4.   
  5. class B{  
  6. void msg(){System.out.println("Welcome");}  
  7. }  
  8.   
  9. class C extends A,B{//suppose if it were  
  10.    
  11.  Public Static void main(String args[]){  
  12.    C obj=new C();  
  13.    obj.msg();//Now which msg() method would be invoked?  
  14. }  
  15. }  

Questions and Anwsers


Which class is the superclass for every class. 

Object class.

Why multiple inheritance is not supported in java?

  • To reduce the complexity and simplify the language, multiple inheritance is not supported in java in case of class

What is super in java?

It is a keyword that refers to the immediate parent class object

Can you use this() and super() both in a constructor?

No. Because super() or this() must be the first statement.

What is composition?

Holding the reference of the other class within some other class is known as composition.

What is difference between aggregation and composition?

Aggregation represents weak relationship whereas composition represents strong relationship. For example: bike has an indicator (aggregation) but bike has an engine (compostion).

t

Leave a Reply

Subscribe to Posts | Subscribe to Comments

About This Site

Howdy! My name is Suersh Rohan and I am the developer and maintainer of this blog. It mainly consists of my thoughts and opinions on the technologies I learn,use and develop with.

Blog Archive

Powered by Blogger.

- Copyright © My Code Snapshots -Metrominimalist- Powered by Blogger - Designed by Suresh Rohan -