What does the default constructor in the class OBJECT do? [duplicate]
问题 This question already has answers here : Why call super() in a constructor? (5 answers) Closed 2 years ago . I'm a Java beginner learning about Java compiler rules as below: If the class has no super class, extend it to Object class If the class has no constructor, add a default no-parameter constructor If the first line of the constructor is not "super()" or "this()", add "super()" to call the default constructor of the super class. I understand that all objects we create are derived from