C++ 中的 Unordered_multimap operator=


C++ 函数 std::unordered_multimap::operator=() 通过替换旧内容,在必要时修改大小,为 unordered_multimap 分配新内容。

以下是 std::unordered_map() 头文件中的 std::unordered_multimap::operator=() 函数声明。

C++11(语法)

unordered_multimap& operator=(const unordered_multimap& umm);

参数

umm - Another unordered_multimap object of same type.

返回值

Returns this pointer.

示例代码

#include <iostream>
#include <unordered_map>
using namespace std;
int main(void) {
   unordered_multimap umm1 = {
      {'a', 1},
      {'b', 2},
      {'c', 3},
      {'d', 4},
      {'e', 5},
   };
   unordered_multimap umm2;
   umm2 = umm1;
   cout << "Unordered multimap contains following elements" << endl;
   for (auto it = umm2.begin(); it != umm2.end(); ++it)
   cout << it->first << " = " << it->second << endl;
   return 0;
}

输出

Unordered multimap contains following elements
e = 5
a = 1
b = 2
c = 3
d = 4

更新日期: 30-Jul-2019

60 次浏览

开启你的 职业生涯

完成课程以获得认证

开始
广告