std::swap(std::basic_filebuf)
来自cppreference.com
< cpp | io | basic filebuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class CharT, class Traits > void swap(std::basic_filebuf<CharT, Traits>& lhs, |
(C++11 起) | |
过载的std::swap为std::basic_filebuf算法。交易
lhs
的rhs
的状态。有效地调用lhs.swap(rhs).原文:
Overloads the std::swap algorithm for std::basic_filebuf. Exchanges the state of
lhs
with that of rhs
. Effectively calls lhs.swap(rhs).目录 |
[编辑] 参数
lhs, rhs | - | std::basic_filebuf交换对象的状态
原文: std::basic_filebuf objects whose states to swap |
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C++11) |
交换两个basic_filebuf对象 (公共成员函数) |
交换两个对象的值 (函数模板) |