public member function
<fstream>

std::ifstream::swap

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

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

引數

x
另一個 ifstream 物件。

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// swapping ifstream objects
#include <iostream>     // std::cout
#include <fstream>      // std::ifstream

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

  foo.swap(bar);

  char c = foo.get();

  while (foo.good()) {
    std::cout << c;
    c = foo.get();
  }

  foo.close();

  return 0;
}

資料競爭

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

異常安全

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

另見