我最近开始使用c++,我选择学习c++11特性。但是 c++ 代码的运行方式有时并不那么具体。
下面是我的代码。在decltype(std::move(sample)) sample2 = std::move(sample);
我不确定为什么这条线不调用移动构造函数的部分。你能解释一下为什么吗?
#include <iostream>
class AAA
{
public:
AAA() { std::cout << "default constructor" << std::endl; }
AAA(const AAA& cs) { std::cout << "copy constructor" << std::endl; }
AAA(AAA&& cs) { std::cout << "move constructor" << std::endl; }
~AAA() { std::cout << "destructor" << std::endl; }
};
int main(int argc, char* args[])
{
AAA sample;
// ((right here))
decltype(std::move(sample)) sample2 = std::move(sample);
return 0;
}
它是在 [ubuntu 16.04 LTS] 和 [gcc 5.4.0] 上编译的