Classes that don't inherit Object class

前端 未结 4 1160
星月不相逢
星月不相逢 2020-12-03 12:27

Are there any classes that don\'t inherit Object as SuperClass or maybe have become Obsolete/deprecated?

4条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 13:00

    According to java.lang.Object javadoc

    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.

    So, all objects in Java extends it directly or indirectly.

提交回复
热议问题