📜  C++ STL中的unordered_map运算符=

📅  最后修改于: 2021-05-30 09:19:51             🧑  作者: Mango

‘=’是C++ STL中的一个运算符,它将unordered_map复制(或移动)到另一个unordered_map,unordered_map :: 运算符=是相应的运算符函数。此函数有三个版本。

  1. 第一个版本将unordered_map的引用作为参数并将其复制到unordered_map。
  2. 第二个版本执行移动分配,即它将unordered_map的内容移动到另一个unordered_map。
  3. 第三个版本将初始化列表的内容分配给unordered_map。

句法

ump.operator= ( unordered_map& ump )
ump.operator= ( unordered_map&& ump )
ump.operator= ( initializer list )

参数:

  1. 第一个版本将unordered_map的引用作为参数。
  2. 第二个版本将unordered_map的r值引用作为参数。
  3. 第三个版本将一个初始化程序列表作为参数。

返回值:它们都返回此指针的值(* this)。

下面的程序说明了C++中的unordered_map :: 运算符=。
例子

// C++ code to illustrate the method
// unordered_map::operator=()
#include 
using namespace std;
  
// merge function
template 
T merge(T a, T b)
{
    T t(a);
    t.insert(b.begin(), b.end());
    return t;
}
  
int main()
{
    unordered_map sample1, sample2, sample3;
  
    // List initialization
    sample1 = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
    sample2 = { { 7, 8 }, { 9, 10 }, { 11, 12 } };
    // Merge both lists
    sample3 = merge(sample1, sample2);
  
    // copy assignment
    sample1 = sample3;
  
    // Print the unordered_map list
    for (auto& it : sample1)
        cout << it.first << " : " << it.second << endl;
  
    for (auto& it : sample2)
        cout << it.first << " : " << it.second << endl;
  
    for (auto& it : sample3)
        cout << it.first << " : " << it.second << endl;
    return 0;
}
输出:
7 : 8
9 : 10
11 : 12
1 : 2
3 : 4
5 : 6
11 : 12
9 : 10
7 : 8
7 : 8
9 : 10
11 : 12
1 : 2
3 : 4
5 : 6
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”