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.
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.