public member function
<sstream>

std::istringstream::swap

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

内部,该函数调用 istream::swap,然后调用关联的 stringbuf 对象的成员 swap

参数

x
另一个 istringstream 对象。

返回值



示例

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

int main () {

  std::istringstream foo ("100");
  std::istringstream 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)。

异常安全

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

另见