gpt4 book ai didi

c++ - 右值赋值的三元表达式不使用移动赋值运算符

转载 作者:可可西里 更新时间:2023-11-01 15:26:34 24 4
gpt4 key购买 nike

任何人都知道为什么以下代码无法编译:

[hidden]$ g++ -v |& tail -n 1
gcc version 4.8.1 20130603 (Red Hat 4.8.1-1) (GCC)
[hidden]$ cat c.cpp
struct X {
X() = default;
X(const X&) = default;
X(X&&) = default;
X& operator=(const X&) = delete;
X& operator=(X&&) = default;
};

void f(bool t) {
X a, b;
(t ? a : b) = X();
}

[hidden]$ g++ -std=c++11 -c c.cpp
c.cpp: In function ‘void f(bool)’:
c.cpp:11:15: error: use of deleted function ‘X& X::operator=(const X&)’
(t ? a : b) = X();
^
c.cpp:5:6: error: declared here
X& operator=(const X&) = delete;
^
c.cpp:11:15: error: use of deleted function ‘X& X::operator=(const X&)’
(t ? a : b) = X();
^
c.cpp:5:6: error: declared here
X& operator=(const X&) = delete;
^

不是 X() 右值所以在这种情况下应该调用移动赋值运算符吗? C++11 标准中的哪一节讨论右值赋值的 case 三元表达式?

注意:在这种情况下,三元表达式是左值,因为如果我将 = delete 更改为 = default,它会编译。

最佳答案

这是编译器中的一个错误,请参阅 Bogus overload resolution for the assignment operator in assignment to a conditional , 它在 gcc 4.9 中仍然失败。

问题不在于三元运算符,而是重载解析以错误的赋值运算符结束。

关于c++ - 右值赋值的三元表达式不使用移动赋值运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19341908/

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