Possible Duplicate:
Why there is no multiple inheritance in Java, but implementing multiple interfaces is allowed
hi all, I am new to java and when I am try to use multiple inheritance concept in java its showing a compile time error.Why java does not support it.I heard about interface key word but
do not know why java support it directly. please help me in this and explain.
Multiple inheritance can be really difficult to understand. When you have a multiple inheritance with two classes which have methods in conflicts, how do you handle this ?
Of course solutions exist (in C++ for example) but the creators of Java decided it was way to complicated and not really in the Java philosophy (make development a lot easier).
From sun.com :
Resources :