CppDS.com

C++ 98 11 14 17 20 手册

std::swap(std::basic_syncbuf)

来自cppreference.com
< cpp‎ | io‎ | basic syncbuf
template< class CharT, class Traits, class Allocator >

void swap( std::basic_syncbuf<CharT, Traits, Allocator>& lhs,

           std::basic_syncbuf<CharT, Traits, Allocator>& rhs ) noexcept;
(C++20 起)

std::swap 算法对 std::basic_syncbuf 的重载。

交换 lhsrhs 的状态。等效地调用 lhs.swap(rhs)

参数

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

返回值

(无)

示例

参阅

交换二个 basic_syncbuf 对象
(公开成员函数)
交换两个对象的值
(函数模板)
关闭