标签: c++ c++11
让我们考虑以下代码:
class Test{ public: Test method(){ Test t; return std::move(t); } Test&& methoda2(){ Test t; return std::move(t); }
这些方法有什么区别?