来自最新的C ++ ISO标准 https://timsong-cpp.github.io/cppwp/expr#basic.lval-10
左值是可修改的,除非其类型为const限定或为函数类型。 [注:试图通过不可修改的左值或右值修改对象的程序格式错误
但是下面的通过rvalue临时修改的代码运行良好。
https://godbolt.org/z/L9H06i
#include <iostream>
struct A
{
std::string s1;
A():s1("123") {}
A&& modify() { s1 = "123411111111111111111111111111111111111111111111111111111111111111111111";
return std::move(*this);
} //modifying temporary object through rvalue!
};
void f(A&& o)
{
std::cout << o.s1.c_str();
}
int main()
{
f(A().modify());//modifying temporary object through rvalue!
return 0;
}