About default constructor
- class A {
- public:
- A(int x = 0) { v = x; }
- private:
- int v;
- };
The definition for default constructor: “The constructor that takes no arguments is known as the default constructor.”
Is A(int x = 0); a default constructor?
9 replies
ISO/IEC 14882:2003, 12.1.5 [cs.nyu.edu] A default constructor for a class X is a constructor of class X that can be called without an argument. If there is no user-declared constructor for class X, a default constructor is implicitly declared.
Is A(int x = 0); a default constructor?
Yes.
You can test it yourself. Put a debug in the constructor. Create an instance of A and see if your constructor is called or not.
The practical meaning of a default constructor is that if you don’t define one yourself the compiler is making one implicitly for you.
Have a look at this example :
- class A { public:
- //A(int x = 0) { v = x; cout << " test my constructor";} //just for later use
- private:
- int v;
- };
So for instance when you use class A in another class B, the default constructor, implicitly created by the compiler, will be called.
- class B { public:
- private:
- A a;
- };
If you uncomment line 2 of class A, you will see the cout message, meaning your constructor is called with no parameter. Thus it’s a default constructor. And you as a programmer took control over it.
In this example there is no practical need to define one since the result of both will be te same. Of course in real life things aren’t that simple ;)
The C++ standard is very clear about what a default constructor is (section 12.1, number 5):
A default constructor for a class X is a constructor of class X that can be called without an argument. If there is no user-declared constructor for class X, a default constructor is implicitly declared. […]
You must log in to post a reply. Not a member yet? Register here!



