public member function
<sstream>

std::basic_ostringstream::swap

void swap (basic_ostringstream& x);
交换内部数据
交换 x*this 之间的所有内部数据。

在内部,该函数调用 basic_ostream::swap,然后调用关联的 swap 成员函数 basic_stringbuf 对象。

参数

x
另一个具有相同模板参数(charTtraitsAlloc)的 basic_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)。

异常安全

无异常保证:此成员函数从不抛出异常。

另见