命名空间
变体
操作

std::swap(std::basic_filebuf)

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

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

           std::basic_filebuf<CharT,Traits>& rhs );
(自 C++11 起)

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

内容

[编辑] 参数

lhs, rhs - std::basic_filebuf 对象,其状态需要交换

[编辑] 返回值

(无)

[编辑] 示例

[编辑] 另请参阅

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