Do we inherit from Object?

后端 未结 3 1891
伪装坚强ぢ
伪装坚强ぢ 2021-01-18 19:30

Guys do we inherit from Object like from any other class (except of course that we don\'t have to explicitly state that) or there is some special privileges to Object class

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-18 20:07

    Everything is an Object in Java. All of the methods of Object (toString(), wait(), etc.) can be called on any instance of any Java class.

提交回复
热议问题