All classes in Java by default "extend" the Object class, that's why Object is superclass of every class in Java.
As per the definition of class "Object".
Class Object is the root of the class hierarchy. Every class has Object as a superclass. All objects, including arrays, implement the methods of this class.
A similar question which was discussed before ...
Default class that is extended by all classes in java