multimap :: 运算符=是内置的C++ STL,可为容器分配新内容,以替换其当前内容。
句法:
multimap1_name = multimap2_name
参数:左侧的多图是通过销毁multimap1的元素在其中分配右侧的多图的容器。
返回值:该函数不返回任何内容。
// C++ program for illustration of
// multimap::operator= function
#include
using namespace std;
int main()
{
// initialize container
multimap mp, copymp;
// insert elements in random order
mp.insert({ 2, 30 });
mp.insert({ 1, 40 });
mp.insert({ 2, 60 });
mp.insert({ 2, 20 });
mp.insert({ 1, 50 });
mp.insert({ 4, 50 });
// = operator is used to copy map
copymp = mp;
// prints the elements
cout << "\nThe multimap mp1 is : \n";
cout << "KEY\tELEMENT\n";
for (auto itr = mp.begin(); itr != mp.end(); ++itr) {
cout << itr->first
<< '\t' << itr->second << '\n';
}
cout << "\nThe multimap copymap is : \n";
cout << "KEY\tELEMENT\n";
for (auto itr = copymp.begin(); itr != copymp.end(); ++itr) {
cout << itr->first
<< '\t' << itr->second << '\n';
}
return 0;
}
输出:
The multimap mp1 is :
KEY ELEMENT
1 40
1 50
2 30
2 60
2 20
4 50
The multimap copymap is :
KEY ELEMENT
1 40
1 50
2 30
2 60
2 20
4 50
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。