How does a subclass execute its superclass constructor?

The super keyword in java is a reference variable that is used to refer to parent class objects. An understanding of Inheritance and Polymorphism is needed in order to understand the super keyword. The keyword “super” came into the picture with the concept of Inheritance. It is majorly used in the following contexts:

  • Use of super with variables
  • Use of super with methods
  • Use of super with constructors

1. Use of super with variables

This scenario occurs when a derived class and base class has the same data members. In that case, there is a possibility of ambiguity for the JVM. We can understand it more clearly using this code snippet: 

Java

class Vehicle {

    int maxSpeed = 120;

}

class Car extends Vehicle {

    int maxSpeed = 180;

    void display()

    {

        System.out.println("Maximum Speed: "

                           + super.maxSpeed);

    }

}

class Test {

    public static void main(String[] args)

    {

        Car small = new Car();

        small.display();

    }

}

In the above example, both base class and subclass have a member maxSpeed. We could access maxSpeed of base class in subclass using super keyword.

2. Use of super with methods

This is used when we want to call the parent class method. So whenever a parent and child class have the same-named methods then to resolve ambiguity we use the super keyword. This code snippet helps to understand the said usage of the super keyword.

Java

class Person {

    void message()

    {

        System.out.println("This is person class\n");

    }

}

class Student extends Person {

    void message()

    {

        System.out.println("This is student class");

    }

    void display()

    {

        message();

        super.message();

    }

}

class Test {

    public static void main(String args[])

    {

        Student s = new Student();

        s.display();

    }

}

Output

This is student class
This is person class

In the above example, we have seen that if we only call method message() then, the current class message() is invoked but with the use of the super keyword, message() of superclass could also be invoked.

3. Use of super with constructors

The super keyword can also be used to access the parent class constructor. One more important thing is that ‘super’ can call both parametric as well as non-parametric constructors depending upon the situation. Following is the code snippet to explain the above concept: 

Java

class Person {

    Person()

    {

        System.out.println("Person class Constructor");

    }

}

class Student extends Person {

    Student()

    {

        super();

        System.out.println("Student class Constructor");

    }

}

class Test {

    public static void main(String[] args)

    {

        Student s = new Student();

    }

}

Output

Person class Constructor
Student class Constructor

In the above example, we have called the superclass constructor using the keyword ‘super’ via subclass constructor.

Important Points to Remember while using Super Keyword

  • Call to super() must be the first statement in the Derived(Student) Class constructor because if you think about it, it makes sense that the superclass has no knowledge of any subclass, so any initialization it needs to perform is separate from and possibly prerequisite to any initialization performed by the subclass. Therefore, it needs to complete its execution first.
  • If a constructor does not explicitly invoke a superclass constructor, the Java compiler automatically inserts a call to the no-argument constructor of the superclass. If the superclass does not have a no-argument constructor, you will get a compile-time error. The object does have such a constructor, so if the Object is the only superclass, there is no problem.

How does a subclass execute its superclass constructor?

  • If a subclass constructor invokes a constructor of its superclass, either explicitly or implicitly, you might think that a whole chain of constructors is called, all the way back to the constructor of Object. This, in fact, is the case. It is called constructor chaining.

This article is contributed by Vishwajeet Srivastava. Please write comments if you find anything incorrect, or if you want to share more information about the topic discussed above.


Does subclass automatically call superclass constructor?

9.2 Calling the Superclass Constructor The constructors of the subclass can initialize only the instance variables of the subclass. Thus, when a subclass object is instantiated the subclass object must also automatically execute one of the constructors of the superclass.

Do subclasses have to call super constructor?

subclass implicitly call even default constructor present in super class which is non parameterised. We have to call explicitly when we pass parameters to the constructor.

Does a subclass need to have a constructor?

Unfortunately, subclasses don't inherit the constructor from the superclass, so they need their own, either explicitly created or a default constructor created by Java.

When you create an object of a subclass the constructor of the superclass calls the constructor of the subclass True or false?

(*2) A subclass constructor always calls the constructor of its superclass, and so on up to the Object constructor, to initialize all the aspects of the instance that the subclass inherits from its superclass.