📜  C++ STL中的映射运算符=

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

map :: 运算符=是C++ STL中的内置函数,它将容器的内容分配给其他容器,以替换其当前内容。

句法:

map1_name = map2_name

参数:左边的地图是容器,通过销毁map1的元素可以在其中分配右边的地图。

返回值:该函数不返回任何内容。

// C++ program for illustration of
// map::operator= function
#include 
using namespace std;
  
int main()
{
  
    // initialize container
    map mp, copymp;
  
    // insert elements in random order
    mp.insert({ 2, 30 });
    mp.insert({ 1, 40 });
    mp.insert({ 4, 50 });
  
    // = operator is used to copy map
    copymp = mp;
  
    // prints the elements
    cout << "\nThe map mp is : \n";
    cout << "KEY\tELEMENT\n";
    for (auto itr = mp.begin(); itr != mp.end(); ++itr) {
        cout << itr->first
             << '\t' << itr->second << '\n';
    }
  
    cout << "\nThe map 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 map mp is : 
KEY    ELEMENT
1    40
2    30
4    50

The map copymap is : 
KEY    ELEMENT
1    40
2    30
4    50
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”