About default constructor
-
-
bq.
"ISO/IEC 14882:2003, 12.1.5":http://cs.nyu.edu/courses/summer11/G22.2110-001/documents/c++2003std.pdf 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.[quote author="Edico" date="1311779819"]Is A(int x = 0); a default constructor?[/quote]
Yes.
-
[quote author="Edico" date="1311779819"]The definition for default constructor: "The constructor that takes no arguments is known as the default constructor."[/quote]
The definition is wrong.
-
bq. 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):
[quote]
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. [...]
[/quote]