Object class as super class in Java

前端 未结 6 1074
生来不讨喜
生来不讨喜 2020-12-06 05:51

Why is object class the super class in Java?

6条回答
  •  执笔经年
    2020-12-06 06:07

    The java program is essentially manipulation of

    method and class.

    The class inherit some properties on which there structure built up later.

    Object is the basic class and all classes are subclass of Object.

提交回复
热议问题