+ 1
Why java can not support multiple inheritance????
2 Answers
+ 1
The problem with multiple Inheritance is that two classes may define different ways to solve a same problem which can be ambiguous for subclasses to pick one specific way.
Which could be one reason for not including this feature while writing Java.
0
but you can implement multiple interfaces