Why is object class the super class in Java?
|
|
That is a good question. Java chose to make a single class be the ultimate parent class for everything so that there is an easy way to pass around any arbitrary object, without needing to know its type (i.e. you can use the declared type of Object to refer to every single item in the type system, even primitives using their wrapper classes). However, there are OOP languages such as C++ where there is no universal base class as in Java. Another benefit to having a universal base class is that logic dealing with the superclass does not have to be special cased for top-level classes (with the exception of the universal base class, Object, itself). |
|||||||
|
|
It's what we call the axiom of object-oriented programming in Java. Every single abstraction in your code is and object. It contains a few things that are applicable to every peace of information you use in your code:
If you learn Java, it is best for you to study the "Inheritance" section of whatever book you use and then try to answer this question yourself. |
|||
|
|
|
Java classes (implicitly/explicitly)
The rest have been mentioned here already. |
|||||||
|
|
It provides a template for all the derived objects that programmers create. The key functionalities that may be required for every user-defined object are readily available this way.
To name the more important ones. |
|||
|
|
|
Off the top of my head
|
|||
|
|