function template
<map>

std::swap (map)

template <class Key, class T, class Compare, class Alloc>  void swap (map<Key,T,Compare,Alloc>& x, map<Key,T,Compare,Alloc>& y);
交换两个map的内容
容器x的内容与y的内容交换。两个容器对象必须是相同的类型(相同的模板参数),但大小可以不同。

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

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

参数

x,y
相同类型的 map 容器(即,具有相同的模板参数, T, 比较Alloc).

返回值



示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// swap maps
#include <iostream>
#include <map>

int main ()
{
  std::map<char,int> foo,bar;

  foo['x']=100;
  foo['y']=200;

  bar['a']=11;
  bar['b']=22;
  bar['c']=33;

  swap(foo,bar);

  std::cout << "foo contains:\n";
  for (std::map<char,int>::iterator it=foo.begin(); it!=foo.end(); ++it)
    std::cout << it->first << " => " << it->second << '\n';

  std::cout << "bar contains:\n";
  for (std::map<char,int>::iterator it=bar.begin(); it!=bar.end(); ++it)
    std::cout << it->first << " => " << it->second << '\n';

  return 0;
}

输出
foo contains:
a => 11
b => 22
c => 33
bar contains:
x => 100
y => 200


复杂度

常量。

迭代器有效性

指向两个容器中元素的 所有迭代器、指针和引用 保持有效,并且现在指向调用前它们所指向的相同元素,但在另一个容器中,它们现在进行迭代。
请注意,end iterators 不指向任何元素,并且可能失效。

数据竞争

xy 这两个容器都被修改。
调用时不会访问任何包含的元素(尽管请参阅上面的iterator validity)。

异常安全

如果两个 map 中的分配器比较相等,或者它们的 allocator traits 表明分配器应 propagate,则该函数永远不会抛出异常(无抛出保证)。
否则,将导致未定义行为

另见