+ 1
Why we do not use multiple inheritance in java,C#??
2 Answers
+ 1
https://www.quora.com/Why-donât-C-and-NET-support-multiple-inheritance
+ 1
if the both base classes contains same name methods or functions then both get inherit into derived class and on calling the function , compiler get confuse which function should be call. therefore we use instance in java to achieve multiple inheritance.