public member function
<sstream>

std::basic_stringstream::swap

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

內部,該函式呼叫 basic_iostream::swap,然後呼叫關聯的 swap 成員函式,該函式是 basic_stringbuf 物件。

引數

x
另一個具有相同模板引數(charTtraitsAlloc)的 basic_stringstream 物件。

返回值



示例

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

int main () {

  std::stringstream foo;
  std::stringstream bar;

  foo << 100;
  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)。

異常安全

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

另見