Constructors
In this lesson, we explore the world of constructors and learn why they are necessary for a class.
We'll cover the following...
What is a Constructor?
As the name suggests, the constructor is used to construct the object of a class. It is a special member function that outlines the steps that are performed when an instance of a class is created in the program.
A constructor’s name must be exactly the same as the name of its class.
The constructor is a special ...