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