0
Java support multipul inhertance yes are no
2 Respuestas
+ 3
java doesn't support multiple inheritance. because suppose c is the child class extending from both parent class a and parent class b with some methods defined in them. Then child class cannot understand which class method to call. so there is a confusion here which leads to ambiguity and leads to compile time error.This is the reason java doesnot support multiple inheritance
+ 2
No