CodeGym/Java Blog/Java Classes/Constructor Chaining in Java
Author
Volodymyr Portianko
Java Engineer at Playtika

Constructor Chaining in Java

Published in the Java Classes group
members

What is Constructor Chaining?

A constructor in Java is a specific method used in object creation of a class. The constructor is invoked every time an object of the class is created. It can be used to assign values to the properties of the object at creation time. There can be multiple constructors in a Java class with different parameter lists. Constructor chaining is used to invoke different implementations of constructors of the same class/parent class at the object creation time.

How constructor chaining is implemented in Java?

There are two ways of chaining constructors based on how to call the constructor. They are as follows.
  • using this() keyword – to call constructors of the same class
  • using super() keyword – to call constructors of the parent class
This is explained in the following examples.Constructor Chaining in Java - 1

Constructor chaining example #1 – Constructors are chained using this() keyword

We have declared four constructors for the DerivedClass. One with no arguments and the other three with different arguments. Inside each constructor, this() keyword is used to call the next constructor of the same class.
package com.tutorialwriting.constchaining;

public class DerivedClass{

    String firstName;
    String country;
    int age;

    public DerivedClass() {
        // calling one argument constructor
        this("Maggie");
    }

    public DerivedClass(String firstName) {
        // calling two argument constructor
        this(firstName, 15);
    }

    public DerivedClass(String firstName, int age) {
        // calling three argument constructor
        this(firstName, age, "Australia");
    }

    public DerivedClass(String firstName, int age, String country) {
        this.firstName = firstName;
        this.age = age;
        this.country = country;
    }

    void displayValues() {
        System.out.println("First Name : " + firstName);
        System.out.println("Country : " + country);
        System.out.println("Age : " + age);
    }

    public static void main(String args[]) {
        DerivedClass object = new DerivedClass();
        object.displayValues();
    }
}
The output of the executionConstructor Chaining in Java - 2

Constructor chaining example #2 – Constructors are chained using the super() keyword

Here, the child class calls the constructors of the parent class using the super() keyword. The BaseClass has three constructors. The constructor with no arguments calls one of the three-argument-constructor of the BaseClass using this().
package com.tutorialwriting.constchaining;

public class BaseClass {

    public BaseClass() {
        //calling a three argument constructor of the same class
        this("Male", "English", "1989/11/10");
        System.out.println("I'm executed third!!!");
    }

    public BaseClass(String firstName, String surname, int idNo) {
        System.out.println("I'm executed first!");
        System.out.println("First name : " + firstName);
        System.out.println("Surname : " + surname);
        System.out.println("ID Number : " + idNo);
    }

    public BaseClass(String gender, String nationality, String birthDate) {
        System.out.println("I'm executed second!!");
        System.out.println("Gender : " + gender);
        System.out.println("Nationality : " + nationality);
        System.out.println("Birth Date : " + birthDate);
    }

}
The DerivedClass has two constructors, each calling the different constructors of the super class using super().
package com.tutorialwriting.constchaining;

public class DerivedClass extends BaseClass {

    public DerivedClass() {
        //calling no argument constructor of the super class
        super();
    }

    public DerivedClass(String firstName, String surname, int idNo) {
        //calling three argument constructor of the super class
        super(firstName, surname, idNo);
    }

    public static void main(String args[]) {
        DerivedClass object2 = new DerivedClass("Paul", "Wilson", 123456);
        DerivedClass object1 = new DerivedClass();
    }
}
The output of the executionConstructor Chaining in Java - 3

Implicit vs. Explicit constructor calling

Java has two different ways of calling constructors: Implicit calling and Explicit calling.
  • Explicit calling refers to calling constructors explicitly in the code using this() or super().
  • Implicit calling refers to the calling of the no-argument constructor of the super class implicitly at the absence of such an explicit call from the child class constructor. In other words, the compiler adds the super() call as the first line of any of the constructors of the child classes if the programmer explicitly does not call super() in the code.

Why do we need constructor chaining?

There are several different purposes of having a constructor chain in Java, as listed below.
  • It is a way to access the properties of other constructors or properties of parent classes.
  • While calling other constructors, only one object is being used, which is the current instance of the class. The initialization happens in one place, but we have the privilege of calling different constructor implementations through a chain. This helps greatly in memory management and code maintenance.

Conclusion

In this tutorial, we discussed constructor chaining in Java. Constructors are method-like code segments that are invoked while creating objects. A Java class can have any number of constructors with different parameter lists. Constructor chaining is a handy way of handling different initializations with one instance of a class. Some important points to be noted from this tutorial are listed below.
  • If the programmer does not add it explicitly to the code, the compiler adds a public no-argument constructor to the Java class. This is called the default constructor.
  • this() and super() should be written as the first line of the constructor.
  • this() is used to call constructors of the same class while super() is used to call constructors of the immediate super class.
  • There should be at least one constructor within the class that does not contain this() keyword.
  • If not added explicitly, the compiler adds a no-argument super() call to every child class constructor. This will help the instantiation of classes correctly.
Comments (2)
  • Popular
  • New
  • Old
You must be signed in to leave a comment
afei1234567
Level 28 , China, China
1 February 2023, 11:34
good
Ywuuu
Level 8 , San Diego
25 January 2022, 07:52
got some new knowledge!