public member function
<sstream>

std::ostringstream::swap

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

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

引數

x
另一個 ostringstream 物件。

返回值



示例

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

int main () {

  std::ostringstream foo;
  std::ostringstream bar;

  foo << 100;
  bar << 200;

  foo.swap(bar);

  std::cout << "foo: " << foo.str() << '\n';
  std::cout << "bar: " << bar.str() << '\n';

  return 0;
}

輸出
foo: 200
bar: 100


資料競爭

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

異常安全

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

另見