Which of this keyword can be used in a subclass to call the constructor of superclass?

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.
  • 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.

Which of this keyword can be used in a subclass to call the constructor of superclass?

  • 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.


Which of this keyword can be used in a subclass to call the constructor of superclass Mcq?

Which of this keyword can be used in a subclass to call the constructor of superclass? Explanation: None. 2. What is the process of defining a method in a subclass having same name & type signature as a method in its superclass?

Can be used in subclass to call the constructor of superclass?

To explicitly call the superclass constructor from the subclass constructor, we use super() . It's a special form of the super keyword.

What is super () in Java?

super() The super keyword in Java is a reference variable that is used to refer parent class objects. The super() in Java is a reference variable that is used to refer parent class constructors. super can be used to call parent class' variables and methods. super() can be used to call parent class' constructors only.

How do you call a super class method in subclass?

Subclass methods can call superclass methods if both methods have the same name. From the subclass, reference the method name and superclass name with the @ symbol.