Just curious to know whether there is any difference(apart from the syntax) between a implicit and explicit "copy" constructor call?
Eg.
MyClass my2 = m1; //Implicit Call
MyClass my3(my2); //Explicit Call
Just curious to know whether there is any difference(apart from the syntax) between a implicit and explicit "copy" constructor call?
Eg.
MyClass my2 = m1; //Implicit Call
MyClass my3(my2); //Explicit Call