public member function
<sstream>

std::istringstream::swap

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

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

引數

x
另一個 istringstream 物件。

返回值



示例

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

int main () {

  std::istringstream foo ("100");
  std::istringstream bar ("200");

  foo.swap(bar);

  int val;

  foo >> val; std::cout << "foo: " << val << '\n';
  bar >> val; std::cout << "bar: " << val << '\n';

  return 0;
}

輸出
foo: 200
bar: 100


資料競爭

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

異常安全

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

另見