function template
<vector>

std::swap (vector)

template <class T, class Alloc>  void swap (vector<T,Alloc>& x, vector<T,Alloc>& y);
交换vector的内容
交换容器xy的内容。两个容器对象必须是同一类型(具有相同的模板参数),尽管它们的大小可能不同。

在调用此成员函数后,x中的元素将是调用前y中的元素,而y中的元素将是调用前x中的元素。所有迭代器、引用和指针对于被交换的对象仍然有效。

这是通用算法swap的一个重载,它通过相互转移其资产的所有权到另一个容器来提高性能(即,容器交换它们数据的引用,而无需实际执行任何元素复制或移动):它的行为如同x.swap(y)被调用。

参数

x,y
vector容器(具有相同的模板参数,TAlloc).

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swap (vector overload)
#include <iostream>
#include <vector>

main ()
{
  unsigned int i;
  std::vector<int> foo (3,100);   // three ints with a value of 100
  std::vector<int> bar (5,200);   // five ints with a value of 200

  foo.swap(bar);

  std::cout << "foo contains:";
  for (std::vector<int>::iterator it = foo.begin(); it!=foo.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << '\n';

  std::cout << "bar contains:";
  for (std::vector<int>::iterator it = bar.begin(); it!=bar.end(); ++it)
    std::cout << ' ' << *it;
  std::cout << '\n';

  return 0;
}

输出
foo contains: 200 200 200 200 200 
bar contains: 100 100 100 


复杂度

常量。

迭代器有效性

指向两个容器中元素的(或在其他容器中迭代的)所有迭代器、指针和引用在调用后仍然有效。
请注意,end迭代器不指向任何元素,并且可能会失效。

数据竞争

两个容器xy都会被修改。

异常安全

如果两个vector中的分配器相等,或者它们的分配器特性表明分配器应传播,则函数永远不会抛出异常(无异常保证)。
否则,将导致未定义行为

另见