‘=’是C++ STL中的一个运算符,它将unordered_multimap复制(或移动)到另一个unordered_multimap,unordered_multimap :: 运算符=是相应的运算符函数。此函数有三个版本。
- 第一个版本将unordered_multimap的引用作为参数并将其复制到unordered_multimap。
- 第二个版本执行移动分配,即它将unordered_multimap的内容移动到另一个unordered_multimap。
- 第三个版本将初始化列表的内容分配给unordered_multimap。
句法:
umm.operator= ( unordered_multimap& umm )
umm.operator= ( unordered_multimap&& umm )
umm.operator= ( initializer list )
参数:
- 第一个版本将unordered_multimap的引用作为参数。
- 第二个版本将unordered_multimap的r值引用作为参数。
- 第三个版本将一个初始化程序列表作为参数。
返回值:它们都返回此指针的值(* this)。
下面的程序说明了C++中的unordered_multimap :: 运算符=。
例子
// C++ code to illustrate the method
// unordered_multimap::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_multimap 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_multimap list
for (auto& it : sample1)
cout << it.first << " : " << it.second << endl;
cout << endl;
for (auto& it : sample2)
cout << it.first << " : " << it.second << endl;
cout << 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等的更多准备工作,请参阅“完整面试准备课程” 。