std::basic_istringstream::operator=
来自 cppreference.com
< cpp | io | basic istringstream
basic_istringstream& operator=( basic_istringstream&& other ); |
(自 C++11 起) | |
将字符串流 other 移动赋值给 *this,实际上是将 std::basic_istream 基类和相关联的 std::basic_stringbuf 都移动赋值。
注意,基类移动赋值将所有流状态变量(除了 rdbuf)在 *this 和 other 之间交换。
内容 |
[编辑] 参数
other | - | 要从中移动的字符串流 |
[编辑] 返回值
*this
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
交换两个字符串流 (公共成员函数) |
(C++11) |
为 basic_stringbuf 对象赋值( std::basic_stringbuf<CharT,Traits,Allocator> 的公共成员函数) |
(C++11) |
从另一个 basic_istream 移动赋值(受保护成员函数) |