A default
constructor cannot be
overloaded in the same class. This is because once a
constructor is defined in a class, the compiler
will not create the default
constructor. Thus, an attempt to
overload the default
constructor will effectively remove it from the class.Jun 22, 2014
read more >>