The technique of having two (or more) constructors in a class is known as constructor overloading. A class can have multiple constructors that differ in the number and/or type of their parameters.
Read moreWhat is constructor overloading with example?
Constructor overloading is a concept of having more than one constructor with different parameters list, in such a way so that each constructor performs a different task . For e.g. Vector class has 4 types of constructors.
Read more