public member function
<sstream>

std::basic_ostringstream::operator=

copy (1)
basic_ostringstream& operator= (const basic_ostringstream&) = delete;
move (2)
basic_ostringstream& operator= (basic_ostringstream&& rhs);
移动赋值
获取rhs的内容,通过移动赋值其成员和基类。

移动赋值其内部的basic_stringbuf对象,其调用前后内部字符序列是否为rhs中的内容,或者其副本,均未指定。无论如何,调用后两个对象使用独立的序列。

参数

rhs
另一个具有相同模板参数(charTtraitsAlloc)的basic_ostringstream对象。

返回值

*this

数据竞争

修改两个流对象(*thisrhs)。

异常安全

无异常保证:此成员函数从不抛出异常。

另见