std::swap(std::basic_istringstream)
来自 cppreference.com
< cpp | io | basic istringstream
定义在头文件 <sstream> 中 |
||
template< class CharT, class Traits, class Alloc > void swap( std::basic_istringstream<CharT,Traits,Alloc>& lhs, |
(自 C++11 起) | |
重载了 std::swap 算法,用于 std::basic_istringstream。将 lhs 的状态与 rhs 的状态交换。实际上调用了 lhs.swap(rhs)。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换状态的流 |
[编辑] 返回值
(无)
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
(C++11) |
交换两个字符串流 (公共成员函数) |