What key word can you use to call a superclass constructor explicitly a goto B This C Super D extends?

We prefer inheritance to reuse the code available in existing classes. In Java, Inheritance is the concept in which one class inherits the properties of another class. In the below example there are two classes Programming and DP while Programming is Parent class and DP is child class. From the main class, we have created an object of DP i.e. child class as it also allows us to access the methods from its parent class, but if we create an object of Parent class(Programming) then we cannot access the methods or objects from its child class.

After creating an object of child class we have first called a method from child class and then called a method from the parent class. This doesn’t matter as we can call the objects in any order.

Java

class Programming {

    public void m1()

    {

      System.out.println("Programming");

    }

}

class DP extends Programming {

    public void m2()

    {

      System.out.println("DP");

    }

}

public class GFG {

    public static void main(String[] args)

    {

        DP obj = new DP();

        obj.m2();

        obj.m1();

    }

}

Output :

DP Programming

Constructor Inheritance

In the below example, we have created a parent and child class. Here, we have created an object of the child class, as the constructor will call itself on creating an object we need not mention anything.

After creating an object of child class the constructor is expected to print the output from its own class, but from the output, we can identify that Parent class got executed and then child class got executed, this is because we have created a constructor for inherited class and every class contains a super() by default, as we are calling an inherited class it contains super() in its first line and calls the Parent class.

Java

class Programming {

    public Programming()

    {

        System.out.println("Programming");

    }

}

class DP extends Programming {

    public DP() { System.out.println("DP"); }

}

public class GFG {

    public static void main(String[] args)

    {

        DP obj = new DP();

    }

}

Constructor Overloading With Super

In the below example we have used the constructor overloading concept, and we have created an object of child class and after calling the constructor of child class the first line in it is super(10, 20) which says that call the matching constructor from the parent class, if we do not mention that line, by default it calls the super() with no parameterized constructor from Parent class.

Java

class Programming {

    public Programming()

    {

        System.out.println("Programming");

    }

    public Programming(int i, int j)

    {

        System.out.println("Programming + +");

    }

}

class DP extends Programming {

    public DP()

    {

        super(10, 20);

        System.out.println("DP");

    }

    public DP(int i, int j)

    {

        System.out.println("DP + +");

    }

}

public class GFG {

    public static void main(String[] args)

    {

        DP obj = new DP();

    }

}

Output:

Programming + + DP

Analogy

Let’s look at the below snippet,

  • In the below code we have created an object of the child class, and we are passing the value of 10 from the object line itself and after going to the specific constructor it first calls super() by default and prints “Programming” from the Parent class.
  • The point to note is here we are calling a parameterized constructor from the object creation line but it will call super() by default as will be available by default.
  • In child class, we can also give super() with parameters to call a specific constructor from Parent class.

Java

class Programming {

    public Programming()

    {

        System.out.println("Programming");

    }

    public Programming(int i, int j)

    {

        System.out.println("Programming + +");

    }

}

class DP extends Programming {

    public DP() { System.out.println("DP"); }

    public DP(int i) { System.out.println("DP +"); }

    public DP(int i, int j)

    {

        System.out.println("DP + +");

    }

}

public class GFG {

    public static void main(String[] args)

    {

        DP obj = new DP(10);

    }

}

Output :

Programming DP +

What keyword is used to call a superclass constructor?

The super keyword refers to superclass (parent) objects. It is used to call superclass methods, and to access the superclass constructor.

What are the 3 uses of super keyword?

Usage of Java super Keyword super can be used to refer immediate parent class instance variable. super can be used to invoke immediate parent class method. super() can be used to invoke immediate parent class constructor.

Does subclass call superclass constructor?

A subclass can call a constructor defined by its superclass by use of the following form of super: super(parameter-list); Here, parameter-list specifies any parameters needed by the constructor in the superclass. super( ) must always be the first statement executed inside a subclass constructor.

Can a subclass call the superclass?

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.