Multiple Inheritance

Hi ,

I have doubt in Object Oriented Programming

All the java programmers know that java doesnot support multiple inheritance i.e we can't extend two classes in subclass but we can achieve this through interfaces.

Object is super class to all classes i.e all classes are subclasses to Object .

suppose if we try to write servlet then we will extend GenericServlet or HttpServlet even though Object is also super class for that servlet. i just want to know where this object class is becomes the super class ,why it is the super class.what exactly the methods in the Object class.

Thanks In Advance

[637 byte] By [pranathia] at [2007-11-26 18:40:49]
# 1
Object will be at the top of the inheritance tree. http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.htmlKaj
kajbja at 2007-7-9 6:14:50 > top of Java-index,Java Essentials,Java Programming...