What is the difference between
MyClass mc = MyClass();
and
MyClass mc;
in C++?
|
|
The first invokes copy constructor, with temporary object as parameter - The second invokes default constructor. In reality, they are, in most cases, optimized out to the same code, but that's the semantical difference. As Negal mentioned, the case is a bit different with POD types; when "MyClass" is POD, the second snippet will not value-initialize |
|||||||||
|
|
The first one is copy initialization and the 2nd one is default initialization. For example, the following code will not compile:
|
|||
|
|
Custom copy constructor and default constructor. |
|||||||
|
|
First create Differences are in fundamental-types, so
|
||||
|
|
|
no difference. default ctor call. syntax sugar ) no copy ctor!!!!
and you find only PPP in the console. |
|||||||
|