gpt4 book ai didi

c++ - 按值返回指针不会 move 对象

转载 作者:太空狗 更新时间:2023-10-29 20:28:16 25 4
gpt4 key购买 nike

这段代码是我用vs2011编译的。它首先打印构造函数,然后打印复制构造函数。但是,如果我将函数更改为返回 a 而不是 ap,它将 move 对象。这是一个错误还是为什么会这样? *ap 不是右值吗?

struct A
{
A() { cout << "constructor" << endl;}
A(const A&) { cout << "copy constructor " << endl;}
void operator=(const A&) { cout << "assignment operator" << endl; }
A( A&&) { cout << "move copy constructor" << endl;}
void operator=(A&&) { cout << "move assignment operator" << endl;}
};

A func() { A a; A *ap = &a; return *ap; }

int main()
{
A a = func();
return 0;
}

最佳答案

*ap 是一个左值(§ 5.3.1.1,n3290),对于自动发生的 move 通常是不安全的。局部变量 return a; 是一个 different case .编译器不需要证明在这个特定实例中它是安全的。这是在您真的不需要指针语义的情况下不使用指针的另一个很好的理由。

将其更改为:

return std::move(*ap);

但是会导致它被显式 move 。

关于c++ - 按值返回指针不会 move 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13611911/

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