2010-04-06 14:40:39 UTC
CExample ex (2,3);
CExample ex2 (ex);
1) Does this mean the copy constructor is provided (in contrast to the default provider) even though I have my own constructor (int a, int b)
2) CExample ex2 = ex; // Is this equivalent to that second line?
3) In a nutshell, what does a copy assignment operator do?