super() is implicitly placed in every constructor so that it acquires the methods mentioned in the parent class. The highest class in hierarchy is Object.
Question is where the super() of Object class point to?
|
|
|
You might find this interesting.
prints
|
|||||
|
|
It's instructive to check out the source code for Object As you can see, it doesn't have a base class (note that implicitly the base class would be As noted in the code comments, it's the root of the Java hierarchy. As such, it's a special case and doesn't have a superclass invocation. |
|||
|
|
|
The Object class cannot have a super() it is the highest item in the class hierarchy. Everything below it will have a super() but not Object. |
|||
|
|
|
See 12.5 Creation of New Class Instances of the JLS
|
||||
|
|
|
The object class is in the base of the all classes in java so there will not any call of super() in the constructor of object class. It does not extended by any class so its obvious that it do not call super in its constructor. |
|||
|
|
|
You can check this by writing two classes and extending one class from another Ex: Create class A as:
Create class B which extends class A:
You will get an error while you try to create an object of class B, because the class B default constructor gets called and which intrun calls default constructor of the super class "A", but the class A does not have any default or zero parameter constructor. |
|||
|
|