gpt4 book ai didi

c++ - 禁用赋值运算符优化的 GCC 选项是什么

转载 作者:太空宇宙 更新时间:2023-11-04 11:31:00 24 4
gpt4 key购买 nike

让我们从这个小例子开始:

#include <vector>
#include <iostream>

using namespace std;

class A {
private:
A& operator =(const A&);
};

int main(void) {
vector<A> v;
v = { A() };
return 0;
}

此代码的编译失败并显示错误消息 error: ‘A& A::operator=(const A&)’ is private。我不知道为什么它需要赋值运算符所以我试图找出并将代码更改为:

#include <vector>
#include <iostream>

using namespace std;

class A {
public:
A& operator =(const A& a) { cout << "operator=" << endl; return *this; }
};

int main(void) {
vector<A> v;
v = { A() };
return 0;
}

现在代码可以编译,但是当我执行它时,它不会在赋值运算符实现中输出调试消息。

所以编译器想要赋值运算符但没有使用它?我猜编译器以某种方式优化了分配。就像它优化了移动构造函数的使用一样(可以使用选项 -no-elide-constructors 来阻止)。是否有可以防止分配优化的编译器选项?或者是否有不同的解释为什么编译器想要一个可访问的赋值运算符但在运行时不使用它?

最佳答案

在 C++03 中,存储在容器中的类型需要是 CopyConstructibleAssignable。在 C++11 中,要求放宽并适用于在容器上执行的操作。

class A 需要是 CopyConstructibleAssignable 因为存储在 vector 这就是为什么你需要 public operator=

int main(void) {
vector<A> v;
v = { A() }; // Copy Constructor

A x;
x = v[0]; // operator=
return 0;
}

关于c++ - 禁用赋值运算符优化的 GCC 选项是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24752270/

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