function template
<fstream>

std::swap (basic_ofstream)

void swap (ofstream& x, ofstream& y);
Swap output file streams
Exchanges the values of the ofstream objects x and y.

这是通用算法 swap 的一个重载,其行为如同x.swap(y)被调用。

参数

x,y
ofstream objects to swap.

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// swapping ofstream objects
#include <fstream>      // std::ofstream

int main () {
  std::ofstream foo;
  std::ofstream bar ("test.txt");

  swap(foo,bar);

  foo << "lorem ipsum";

  foo.close();

  return 0;
}

数据竞争

两个对象,xy,都会被修改。

异常安全

无异常保证:此成员函数从不抛出异常。

另见