0
Why is multiple inheritances not supported in Java ?
Describe it
2 Réponses
+ 3
Because interfaces specify only
what the class is doing, not how it is doing it.
The problem with multiple inheritance is that two classes may define different ways of doing the same thing, and the subclass can't choose which one to pick.
0
Starting from Java 7 it basically is.