开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC 5.4
问题(Question):
#include<iostream>
class A {
public:
A() {}
A(const A& x) { std::cout << "Copy constructor\n"; }
A(A&& x) { std::cout << "Move constructor\n"; }
};
A func(int n) { // no RVO
A temp1, temp2;
if (n>0)
return temp1;
else
return temp2;
}
int main() {
A a1 = static_cast<const A&>(func(1)); // Move constructor
}
不知道为什么输出会是Move constuctor而不是Copy constructor
照理说static_cast<const A&>应该把func(1)转成lvalue了才对
而且就算输出是Move constuctor 也不能不定义Copy constructor 否则会编译错
感谢解答