我用 vs2011 编译了这段代码。它打印第一个构造函数然后复制构造函数。但是,如果我将函数更改为返回a而不是ap,它将移动对象。这是一个错误还是为什么会这样?*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;
}