Example & Tutorial understanding programming in easy ways.

What is Default constructor in C++?

What is constructor?
Basically, constructor is the special type of function in class which can automatically called at the time of object creation.
or,
constructor is the function which will called when we create any new object.

Constructor property:
-Class name and constructor name should be same.
-There is no return type of constructor like void,int etc.

Type of constructor:
1.Default constructor
2.Parametrized constructor
3.Copy constructor

1.Default constructor:
-Default constructor are those constrcutor in which we can not pass any argument.

program:

#include < iostream>

using namespace std;
class Myclass
{
public:
Myclass()
{
cout<<"This is my Default constructor";
}
};
int main()
{
Myclass obj;
return 0;
}


output-

This is my Default constructor




Read More →