右值引用,移动语义,完美转发

值类别
https://cntransgroup.github.io/EffectiveModernCppChinese/5.RRefMovSemPerfForw/item23.html
基本概念
https://zh.cppreference.com/w/cpp/language/value_category

  • std::move执行到右值的无条件的转换,但就自身而言,它不移动任何东西。
  • std::forward只有当它的参数被绑定到一个右值时,才将参数转换为右值。
  • std::move和std::forward在运行期什么也不做。
posted @ 2024-05-18 20:05  又玄  阅读(16)  评论(0)    收藏  举报