在c引用中,我没有看到std :: stringstream构造
函数接受std :: string的rvalue引用.有没有任何其他帮助
功能将字符串移动到stringstream没有开销,还是有特别的理由背后这样的限制?
I do not see a std::stringstream
constructor accepting rvalue reference of std::string
那就对了.即使是str
设置器也没有使用移动语义,所以将字符串移动到stringstream是不可能的(不是在当前的标准,但希望在将来).
原文链接:https://www.f2er.com/c/114774.html