public member function
<stack>

std::stack::swap

void swap (stack& x) noexcept(/*see below*/);
交换内容
将容器适配器(*this)的内容与 x 的内容交换。

此成员函数调用非成员函数 swap(未限定)来交换 *底层容器*。

noexcept 说明符与 *底层容器* 上的 swap 操作匹配。

参数

x
另一个相同类型的 stack 容器适配器(即,使用相同的模板参数 TContainer 实例化)。大小可能不同。

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// stack::swap
#include <iostream>       // std::cout
#include <stack>          // std::stack

int main ()
{
  std::stack<int> foo,bar;
  foo.push (10); foo.push(20); foo.push(30);
  bar.push (111); bar.push(222);

  foo.swap(bar);

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

  return 0;
}

输出

size of foo: 2
size of bar: 3


复杂度

常量。

数据竞争

both *this and x are modified.

异常安全

提供与对 *底层容器* 对象执行的操作相同的保证级别。

另见