Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Scott Meyers说(对于函数模板的参数):
通用引用只能以“ T&&”的形式出现!即使简单地添加const限定符也足以禁用将“ &&”解释为通用参考。
T&&
const
&&
为什么 C++ 没有const通用引用?有什么技术原因吗?
什么是 const 通用参考?这将是一个无法修改的参考。从右值引用移动是一种修改。因此,如果有 const 通用引用这样的东西,它就是const T&.
const T&