El map::operator= es una función construida en C++ STL que asigna contenidos de un contenedor a un contenedor diferente, reemplazando su contenido actual.
Sintaxis:
map1_name = map2_name
Parámetros: El mapa de la izquierda es el contenedor en el que se asignará el mapa de la derecha destruyendo los elementos del mapa1.
Valor devuelto: esta función no devuelve nada.
// C++ program for illustration of // map::operator= function #include <bits/stdc++.h> using namespace std; int main() { // initialize container map<int, int> 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; }
Producción:
The map mp is : KEY ELEMENT 1 40 2 30 4 50 The map copymap is : KEY ELEMENT 1 40 2 30 4 50