在C++ STL中使用unordered_map等号运算符
在C++ STL中,等号(=)是一种用于将unordered_map复制(或移动)到另一个unordered_map的运算符,而unordered_map::operator=就是相应的运算符函数。该函数有三个版本。
- 第一个版本以一个unordered_map的引用作为参数,并将其复制到另一个unordered_map。
- 第二个版本执行移动赋值,即将一个unordered_map的内容移动到另一个unordered_map中。
- 第三个版本将初始化列表的内容分配给unordered_map。
语法
ump.operator= ( unordered_map& ump )
ump.operator= ( unordered_map&& ump )
ump.operator= ( 初始化列表 )
参数:
- 第一个版本以一个unordered_map的引用作为参数。
- 第二个版本以一个unordered_map的右值引用作为参数。
- 第三个版本以一个初始化列表作为参数。
返回值:它们所有返回此指针的值(*this)。
下面的程序说明了在C++中如何使用unordered_map::operator=。
示例代码:
// C++中说明了unordered_map::operator=()方法
#include <bits/stdc++.h>
using namespace std;
//合并函数
template <class T>
T merge(T a, T b)
{
T t(a);
t.insert(b.begin(), b.end());
return t;
}
int main()
{
unordered_map<int, int> sample1, sample2, sample3;
//初始化列表
sample1 = { { 1, 2 }, { 3, 4 }, { 5, 6 } };
sample2 = { { 7, 8 }, { 9, 10 }, { 11, 12 } };
//合并两个列表
sample3 = merge(sample1, sample2);
//复制赋值
sample1 = sample3;
//打印unordered_map列表
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