gpt4 book ai didi

c++ - C++中的复制构造函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:03 26 4
gpt4 key购买 nike

我有这个代码

#include <iostream>
using namespace std;

class Test{
public:
int a;

Test(int i=0):a(i){}
~Test(){
cout << a << endl;
}

Test(const Test &){
cout << "copy" << endl;
}

void operator=(const Test &){
cout << "=" << endl;
}

Test operator+(Test& p){
Test res(a+p.a);
return res;
}
};

int main (int argc, char const *argv[]){
Test t1(10), t2(20);
Test t3=t1+t2;
return 0;
}

输出:

30
20
10

为什么这里不调用拷贝构造函数?

最佳答案

这是一个特殊情况,称为 Return Value Optimization其中允许编译器优化临时文件。

关于c++ - C++中的复制构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2787717/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com