Default constructor in C++ by R4R Team

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 constructor 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




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!