简体   繁体   中英

C++ constructor not called

In the following code the constructor is called only once (ie) when Car() executes. Why is it not called the second time on the statement Car o1(Car())?

#include <stdio.h>
#include <iostream>

class Car
{
public :
   Car()
   {
      std::cout << "Constructor" << '\n';
   }
   Car(Car &obj)
   {
      std::cout << "Copy constructor" << '\n';
   }
};

int main()
{
   Car();
   Car o1(Car()); // not calling any constructor
   return 0;
}
Car o1(Car());

This declares a function called o1 that returns a Car and takes a single argument which is a function returning a Car . This is known as the most-vexing parse .

You can fix it by using an extra pair of parentheses:

Car o1((Car()));

Or by using uniform initialisation in C++11 and beyond:

Car o1{Car{}};

But for this to work, you'll need to make the parameter type of the Car constructor a const Car& , otherwise you won't be able to bind the temporary to it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM