public member function
<fstream>

std::basic_ofstream::swap

void swap (basic_ofstream& x);
交換內部資料
交換 x*this 之間的所有內部資料。

該函式內部呼叫 basic_ostream::swap,然後呼叫關聯的 swap 成員函式,該成員函式屬於 basic_filebuf 物件。

引數

x
另一個相同型別的 basic_ofstream 物件(即具有相同的模板引數 charTtraits)。

返回值



示例

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");

  foo.swap(bar);

  foo << "lorem ipsum";

  foo.close();

  return 0;
}

資料競爭

修改兩個流物件(*thisx)。

異常安全

無異常保證:此成員函式從不丟擲異常。

另見