Hacker News new | ask | show | jobs
by tored 1135 days ago
I remember when C++ was touted as a superior language to Java because C++ has support for multiple inheritance.
1 comments

Java has interfaces with method implementations now. You can do multiple inheritance with it too :P
they did avoid the diverging diamond of death by making it a compiler error to have duplicate functions though.

AFAIK,that's the only big downside to multiple inheritance.