标签: c++ c++11
允许常量左值引用绑定rvalue背后的逻辑是什么?在什么情况下我需要这样做:
const std::string& r2 = s1 + s1;
而不是:
std::string&& r3 = s1 + s1;