std::basic_istringstream::swap
来自cppreference.com
< cpp | io | basic istringstream
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void swap( basic_istringstream& other ); |
(C++11 起) | |
交换状态的流与那些
other
. 原文:
Exchanges the state of the stream with those of
other
. 这是通过调用basic_istream<CharT, Traits>::swap(other)和rdbuf->swap(other->rdbuf).
原文:
This is done by calling basic_istream<CharT, Traits>::swap(other) and rdbuf->swap(other->rdbuf).
目录 |
[编辑] 参数
other | - | 流交换的状态
|
[编辑] 返回值
(无)
[编辑] 为例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C++11) |
移动字符串流 (公共成员函数) |
(C++11) |
交换两个的basic_stringbuf对象 (公共成员函数of std::basic_stringbuf )
|