函式模板
<sstream>

std::swap (basic_ostringstream)

template <class charT, class traits, class Alloc>  void swap (basic_ostringstream<charT,traits,Alloc>& x,             basic_ostringstream<charT,traits,Alloc>& y);
交換輸出字串流
交換 basic_ostringstream 物件 xy 的值。

這是通用演算法 swap 的一個過載,其行為如同x.swap(y)被呼叫。

引數

x,y
同類型的 basic_ostringstream 物件(即,具有相同的模板引數,charT, 特性 (traits)Alloc).

返回值



示例

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,都會被修改。

異常安全

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

另見