C++ 映射库 - swap() 函数



描述

C++ 函数std::multimap::swap() 交换 multimap 的内容与另一个 multimap 的内容。x.

声明

以下是来自 std::map 头文件的 std::multimap::swap() 函数声明。

C++98

template <class Key, class T, class Compare, class Alloc>
   void swap (multimap<Key,T,Compare,Alloc>& first, 
      multimap<Key,T,Compare,Alloc>& second);

参数

  • first − 第一个 multimap 对象。

  • second − 第二个相同类型的 multimap 对象。

返回值

异常

如果抛出异常,则对容器没有影响。

时间复杂度

常数,即 O(1)

示例

以下示例演示了 std::multimap::swap() 函数的用法。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Multimap with duplicates */
   multimap<char, int> m1 {
            {'a', 1},
            {'a', 2},
            {'b', 3},
            {'c', 4},
            {'d', 5}
         };

   multimap<char, int> m2;

   swap(m1, m2);

   cout << "Multimap contains following elements:" << endl;

   for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果:

Multimap contains following elements:
a = 1
a = 2
b = 3
c = 4
d = 5
map.htm
广告