通过赋值初始化C ++对象时会发生什么?

时间:2019-08-04 21:33:18

标签: c++ object initialization variable-assignment

据我了解,赋值使用operator=函数,初始化使用constructor。但是,当您在声明期间分配另一个对象时,会发生什么?我本以为car2会使用car1的数据进行初始化,但我不知道。它是否首先使用默认构造函数进行初始化,然后重新分配数据?我尝试编写一个快速程序,并使用调试器对其进行了跟踪,但它不允许我浏览重要的行Car car2 = car1。我已经在下面包含了我的程序。

#include <iostream>
#include <string>

class Car
{
public:
    Car();
    Car(std::string color, std::string make);

private:
    std::string color;
    std::string make;
};

Car::Car() {
    this->color = "None";
    this->make = "None";
}

Car::Car(std::string color, std::string make) {
    this->color = color;
    this->make = make;
}

int main() {
    Car car1("blue", "Toyota");
    Car car2 = car1;
    return 0;
}

1 个答案:

答案 0 :(得分:4)

Car有一个implicitly declared copy-ctor,在这里使用它是因为无法取消ctor调用(它不使用pr值初始化),也不能进行移动构造(它不能一个xvalue)。

隐式声明的copy-ctor进行成员级的复制构造。