|
|
|
|
myclass(int* p)
calls myclass()
|
|
myclass();
this creates a new myclass object using the default constructor, but you don't do anything with this object so it's pretty useless.
|
|
myclass()
constructor to do some stuff so calling the second constructor before assigning wont help me...