gpt4 book ai didi

c++ - 为什么在这种情况下调用非 const 右值 move 构造函数?

转载 作者:可可西里 更新时间:2023-11-01 17:34:23 25 4
gpt4 key购买 nike

我看过相关的问题,他们主要讨论我们是否应该将 const 右值引用作为参数。但我仍然无法理解为什么在以下代码中调用了非常量 move 构造函数:

    #include <iostream>
using namespace std;

class A
{
public:
A (int const &&i) { cout << "const rvalue constructor"; }
A (int &&i) { cout << "non const rvalue constructor"; }
};


int const foo (void)
{
const int i = 3;
return i;
}

int main (void)
{
A a(foo());
}

最佳答案

这里是你的代码的一个稍微修改的版本:

#include <iostream>

#if 0
using T = int;
#else
struct T {T(int){}};
#endif

using namespace std;
class A {
public:
A (T const &&i) { cout << "const rvalue constructor"; }
A (T &&i) { cout << "non const rvalue constructor"; }
};


T const
foo (void)
{
const T i = 3;
return i;
}

int main()
{
A a(foo());
}

T == int 时,您会得到非常量重载。当 T 是类类型时,您会得到 const 重载。此行为不属于第 8.2.2 节 [expr.type]/p2:

If a prvalue initially has the type “cv T”, where T is a cv-unqualified non-class, non-array type, the type of the expression is adjusted to T prior to any further analysis.

翻译:该语言没有 const 限定的标量纯右值。它们根本不存在。

关于c++ - 为什么在这种情况下调用非 const 右值 move 构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51067280/

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