命名空间
变体
操作

std::swap(std::basic_stringbuf)

来自 cppreference.com
< cpp‎ | io‎ | basic stringbuf
 
 
 
 
定义在头文件 <sstream>
template< class CharT, class Traits, class Alloc >

void swap( std::basic_stringbuf<CharT,Traits,Alloc>& lhs,

           std::basic_stringbuf<CharT,Traits,Alloc>& rhs );
(自 C++11 起)
(直到 C++20)
template< class CharT, class Traits, class Alloc >

void swap( std::basic_stringbuf<CharT,Traits,Alloc>& lhs,
           std::basic_stringbuf<CharT,Traits,Alloc>& rhs )

    noexcept(noexcept(lhs.swap(rhs)));
(自 C++20 起)

重载 std::swap 算法以用于 std::basic_stringbuf。交换 lhsrhs 的状态。实际上调用 lhs.swap(rhs).

内容

[编辑] 参数

lhs, rhs - std::basic_stringbuf 对象,用于交换其状态

[编辑] 返回值

(无)

[编辑] 示例

[编辑] 参见

(C++11)
交换两个 basic_stringbuf 对象
(公有成员函数) [编辑]
交换两个对象的值
(函数模板) [编辑]