Do we inherit from Object?

后端 未结 3 1882
伪装坚强ぢ
伪装坚强ぢ 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

    No it's the same. Here the excerpt from JLS 8.1.3:

    If the class declaration for any other class has no extends clause, then the class has the class Object as its implicit direct superclass.

    Of course, Object itself is a bit special (JLS):

    Each class except Object is an extension of (that is, a subclass of) a single existing class (§8.1.3) and may implement interfaces (§8.1.4).

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2021-01-18 20:09

    Every class in Java IS an Object. They behave like Objects, they can be added to collections of type Object, they can use any method defined in Object.

    So, YES, everything (except primitives) inherit from Object in Java.

    EDIT:Java takes the approach of "Everything is an Object". It sort of forces Object Oriented programming.

    Example:

    • If class A does not extend another class it inherently extends Object.

    • If class A extends another class B, it is extends Object as well since B must have extended Object.

    0 讨论(0)
提交回复
热议问题