gpt4 book ai didi

c++ - 函数返回的临时对象不总是右值吗?

转载 作者:太空狗 更新时间:2023-10-29 23:21:31 27 4
gpt4 key购买 nike

struct Test
{
Test()
{}

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

Test(Test&& other)
{
cout << "Move" << endl;
}
};

Test* f()
{
static Test t;
return &t;
}

int main()
{
auto t = *f();
return 0;
}

输出是:复制

*f() 显然是一个匿名的临时对象,因此它应该是一个右值并且应该调用移动构造函数。为什么编译器将 *f() 视为左值?

是编译器的bug,还是我的理解有误?

最佳答案

f() 的结果是 Test* 类型的匿名临时对象。 f() is an rvalue .

*f() 通过所述指针执行间接寻址。与使用间接运算符时的情况一样,结果是左值。

关于c++ - 函数返回的临时对象不总是右值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10656795/

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