Anonymous

Is Multiple Inheritance Possible In Java Language Or Not?

1

1 Answers

prasad khadkikar Profile
The concept of multiple inheritance is not supported by java language.Rather java supports interfaces as substitute of this.

It is not possible in java to inherit from a class which inherits the functionality of another class.

In simple words you can't inherit from a subclass in java.Means multiple inheritance is not supported by java.

After making a interface in java language one can use the functionality of the interface n number of times.That's how you can overcome the problem of multiple inheritance in java.

Answer Question

Anonymous