Constructors
A Constructor is used to create or instantiate an object from the class.
Constructor is a special method:
- It has the same name as the class.
- It has no return type or return statement.
Typically a class has more than one constructor: a default constructor which has no parameters, and other constructors with parameters.