Week 5

Removing repetitive code (overloading methods and constructors)

Let's once more return to our Person class. Currently, it looks like this:

public class Person {

    private String name;
    private int age;
    private int height;
    private int weight;

    public Person(String name) {
        this.name = name;
        this.age = 0;
        this.weight = 0;
        this.height = 0;
    }

    public void printPerson() {
        System.out.println(this.name + " is " + this.age + " years old");
    }

    public void growOlder() {
        this.age++;
    }

    public boolean isAdult() {
        if (this.age < 18) {
            return false;
        }

        return true;
    }

    public double bodyMassIndex() {
        double heightInMeters = this.height / 100.0;

        return this.weight / (heightInMeters * heightInMeters);
    }

    public String toString() {
        return this.name + " is " + this.age + " years old, their BMI is " + this.bodyMassIndex();
    }

    public void setHeight(int height) {
        this.height = height;
    }

    public int getHeight() {
        return this.height;
    }

    public int getWeight() {
        return this.weight;
    }

    public void setWeight(int weight) {
        this.weight = weight;
    }

    public String getName() {
        return this.name;
    }
}

All Person objects are 0 years old when created. This is because the constructor sets the value of the instance variable age to 0:

public Person(String name) {
        this.name = name;
        this.age = 0;
        this.weight = 0;
        this.height = 0;
    }

Constructor Overloading

We would like to enhance our Person class to enable creating persons with both age and name provided as parameters to the constructor. This is possible by defining an alternative constructor in the class.

Let's implement the new constructor while keeping the old constructor unchanged.

public Person(String name) {
        this.name = name;
        this.age = 0;
        this.weight = 0;
        this.height = 0;
    }

public Person(String name, int age) {
    this.name = name;
    this.age = age;
    this.weight = 0;
    this.height = 0;
}

We now have two alternative ways to create objects:

public static void main(String[] args) {
    Person paul = new Person("Paul", 24);
    Person ada = new Person("Ada");

    System.out.println(paul);
    System.out.println(ada);
}
Sample output

Paul is 24 years old. Ada is 0 years old.

The technique of having multiple constructors in a class with different parameters is known as constructor overloading. A class can have multiple constructors that differ in the number and/or type of their parameters. However, it's not possible to have two constructors with the exact same parameters.

For example, adding a public Person(String name, int weight) constructor would not be possible because Java would not be able to differentiate it from the existing constructor that has two parameters where the int parameter is used for age.

Calling Your Constructor

Let's pause for a moment. We previously determined that copying and pasting code is not a good practice. However, if we look at the overloaded constructors above, we can see that they share a lot of similarities, which is not ideal.

The first constructor, which accepts a name parameter, is actually a specific case of the second constructor, which takes both name and age parameters. So, what if we made the first constructor call the second constructor instead?

Thankfully, this is possible. A constructor can invoke another constructor using the this keyword, which refers to the current object.

Let's modify the first constructor so that it does not perform any actions itself, but instead calls the second constructor and sets the age parameter to 0.

public Person(String name) {
    this(name, 0);
    //here the code of the second constructor is run, and the age is set to 0
}

public Person(String name, int age) {
    this.name = name;
    this.age = age;
    this.weight = 0;
    this.height = 0;
}

The constructor call this(name, 0); may seem unusual. To better understand it, imagine that the call is automatically replaced with a "copy-paste" of the second constructor, where the age parameter is set to 0. It's important to note that if a constructor calls another constructor, the constructor call must be the first command in the constructor.

Creating new objects works the same way as before:

public static void main(String[] args) {
    Person paul = new Person("Paul", 24);
    Person eve = new Person("Eve");

    System.out.println(paul);
    System.out.println(eve);
}
Sample output

Paul is 24 years old. Eve is 0 years old.

Loading

Method Overloading

Methods can be overloaded in the same way as constructors, i.e., multiple versions of a given method can be created. Once again, the parameters of the different versions must be different. Let's make another version of the growOlder method that ages the person by the amount of years given to it as a parameter.

public void growOlder() {
    this.age = this.age + 1;
}

public void growOlder(int years) {
    this.age = this.age + years;
}

In the example below, "Paul" is born 24 years old, ages by a year and then by 10 years:

public static void main(String[] args) {
    Person paul = new Person("Paul", 24);
    System.out.println(paul);

    paul.growOlder();
    System.out.println(paul);

    paul.growOlder(10);
    System.out.println(paul);
}

Prints:

Sample output

Paul is 24 years old. Paul is 25 years old. Paul is 35 years old.

Person now has two methods, both called growOlder. The one that gets executed depends on the number of parameters provided.

We may also modify the program such that the parameterless method is implemented using the method growOlder(int years):

public void growOlder() {
    this.growOlder(1);
}

public void growOlder(int years) {
    this.age = this.age + years;
}
Loading
You have reached the end of this section! Continue to the next section: