function template
<sstream>

std::swap (ostringstream)

void swap (ostringstream& x, ostringstream& y);
交换输出字符串流
交换 ostringstream 对象 xy 的值。

这是通用算法 swap 的一个重载,其行为如同x.swap(y)被调用。

参数

x,y
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;

  swap(foo,bar);   // unqualified (uses argument-dependent lookup)

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

  return 0;
}

输出
foo: 200
bar: 100


数据竞争

两个对象,xy,都会被修改。

异常安全

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

另见