Calling a Constructor from Another Constructor
In this lesson, you will learn how to call a constructor from another constructor.
We have previously learned about this
reference variable. This is the second use case
of the this
reference variable.
We already know that a class can have multiple constructors. There can be a parameterized constructor which ...