Answer the Question

0
Why Multiple Inheritance  is not supported in java?
By : Aditya gaur    On : 27-Feb-2013     Answers : 2      Report Abuse
Your Answer
Previous Answers
0
Because of Diamond problem of multiple inheritance.

Assume we have two class B and C inheriting from A. Consider that B and C are overriding
an inherited method and they provide their own implementation. now d inherits from both B and C doing multiple inheritance. D should inherits that overridden method, which overridden method will be used? will it be from B and C? here we have an error.
On : 28-Feb-2013   Accept Count : 0  
0
ambiguity around Diamond problem occurs by using multiple inheritance
On : 27-Feb-2013   Accept Count : 0