January 18, 2017 Anurag. Object class is the parent class of all the classes in the Java. It is the topmost class; every class implicitly extends this class and provides the methods of Object class.
Read moreWhich is default super class in Java?
The default superclass is Object (more precisely java. lang. Object ). If a class does not define a direct superclass explicitly (via extends ), then Object is implicitly a superclass of that class.
Read more