V
Victor Bazarov
Dan said:That is erroneous. A default constructor is a constructor without any
arguments.
Nit-pick again: a default constructor is one that can be invoked
without providing any arguments:
struct A {
A(int = 0); // default constructor
};
A a; // default-initialisation (actually A a(0); )
A aa(42); // parameterized
Victor