std::swap(std::basic_stringbuf)

< 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::basic_stringbuf 特化 std::swap 算法。交换 lhsrhs 的内部状态。等效地调用 lhs.swap(rhs)

参数

lhs, rhs - 要交换状态的 std::basic_stringbuf 对象

返回值

(无)

示例

参阅

(C++11)
交换二个 basic_stringbuf 对象
(公开成员函数)
交换两个对象的值
(函数模板)