+ 1
Multiple inheritance
why does java doesnt support Multiple Inheritance??
1 Answer
0
It's like that from the begining. And like you maybe know java want to be backward compatible. So normally it's will never be possible. But on le last version of Java (1.8) they change the interface. And now the interface can declare some default function. So you can't really do "multiple inheritance" but you can simulate it with interface.