multiple inheritence

@haloamar (157)
India
February 7, 2007 10:44am CST
can anybody clear my doubt ..why java doesnot support multiple inheritence and other than using interfaces how can we implement multiple inheritence in java!!
2 responses
• Philippines
13 Feb 07
Java does not need multiple inheritance because it would be unnecessary. Besides it's a more decent structure. Like evolution, one species coming from another.
@raghwagh (1527)
• India
10 Feb 07
I can answer your seconf half, that using interface is the only method of implementing multiple inheritance in Jave.As for inheritance we require to extend from the base class and we can extend from only one class at a time and can implement from many interfaces.So this is the only one method available.