0
Java can only support single inheritance (one class inherit another). whilst c++ can inherit multiple classes(one class inherit two or more classes directly).
In order to implement multiple inheritance on Java one must use Interfaces. Same goes for C#.



