编程口诀0

用途:C++11,for循环中使用auto

口诀:
if 不想修改:
用const auto&;
else if 想copy:
用auto;
else if 不想copy:
用auto&&;

Reference:
https://zhuanlan.zhihu.com/p/25148592
https://isocpp.org/blog/2012/11/universal-references-in-c11-scott-meyers
http://thbecker.net/articles/rvalue_references/section_01.html

你可能感兴趣的:(编程口诀0)