0
What is object class in java
2 Answers
+ 7
Object is an entity which has some properties (data members/variables) and behaviour (member functions/methods)
+ 3
It's the parent of every class in Java, whether standard or user-defined. In other words, every class inherits implicitly from the Object class.



