右值引用与 std::move | C++

本章覆盖:`T&&`;rvalue reference;bind to temporary;`std::move`;move 是 cast / intent,不保证真的移动;moved-from object;valid but unspecified state 的典型理解;move constructor;move assignment;不对马上还要使用的对象随意 move。

本章知识点

  • T&&
  • rvalue reference
  • bind to temporary
  • std::move
  • move 是 cast / intent,不保证真的移动
  • moved-from object
  • valid but unspecified state 的典型理解
  • move constructor
  • move assignment
  • 不对马上还要使用的对象随意 move