what is the purpose of class "Object" which is base class
for all classes?
Answers were Sorted based on User's Feedback
The Object class sits at the top of the class hierarchy
tree in the Java development environment. Every class in
the Java system is a descendent (direct or indirect) of the
Object class. The Object class defines the basic state and
behavior that all objects must have, such as the ability to
compare oneself to another object, to convert to a string,
to wait on a condition variable, to notify other objects
that a condition variable has changed, and to return the
object's class.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / lakshmi
object class is a base class for all class in java.using
this class we can call from super class methods and
variables to sub class
| Is This Answer Correct ? | 3 Yes | 1 No |
listen first , when you create object of one class which is not extending any class than , instead of one object , two object will be created and that is nothing but object of Object class and one more thing is no object is created with out it's superclass. So, object of subclass can not be created without it's superclass where Object class comes into picture because by default compiler gives Object class as superclass to all class which is not extending any class at compilation time itself.
| Is This Answer Correct ? | 4 Yes | 2 No |
What is the purpose of object oriented programming?
What is balanced tree in java?
what are different ways in which a thread can enter the waiting state? : Java thread
Why declare Main() method as a static in java ?
What are the actions that can occur when a thread enters blocked state?
In treeset we add same object ...what will be the out put
how do you store phone numbers using java collections
whats is inheritance?
15 Answers CTS, HCL,
Can java list contain duplicates?
Why does java not allow multiple public classes in a java file ?
Which is the class in java?
What is floating data type?