What are the disadvantages of multiple inheritance?
Answers
Answered by
0
It only has single inheritance precisely to avoid the issues of the multiple inheritance. The primary issue with multiple inheritance is the diamond problem. Java doesn't support multiple inheritance of classes in order to avoid ambiguity (as in case of diamond problem where overriding is the issue).
Similar questions