How can we implement multiple inheritances in Java?- Multiple inheritance is the ability to inherit from multiple classes, Java does not have this capability. - Java does not support multiple inheritances. - Multiple inheritance is too complex. To avoid the complexity Java provides single inheritance with 'Interface' concept. - Java provides 'Interface' concept, the same class can represent different structure.
|