can we implement multiple inheritance in java directly? specify the reason for your answer and also discuss the implementation of multiple inheritance with the help or proper example in java.
Answers
Answered by
0
Answer:
Multiple Inheritance is a feature of object oriented concept, where a class can inherit properties of more than one parent class. The problem occurs when there exist methods with same signature in both the super classes and subclass. On calling the method, the compiler cannot determine which class method to be called and even on calling which class method gets the priority.
Similar questions