Partager via


map::operator=

Remplace les éléments d'un mappage avec une copie d'un autre mappage.

map& operator=(
   const map& _Right
);
map& operator=(
   map&& _Right
);

Paramètres

Paramètre

Description

_Right

map, classe est copié dans map.

Notes

Après avoir effacé tous les éléments existants dans map, operator= copie ou déplace le contenu de _Right dans le tableau associatif (map).

Exemple

// map_operator_as.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
   {
   using namespace std;
   map<int, int> v1, v2, v3;
   map<int, int>::iterator iter;

   v1.insert(pair<int, int>(1, 10));

   cout << "v1 = " ;
   for (iter = v1.begin(); iter != v1.end(); iter++)
      cout << iter->second << " ";
   cout << endl;

   v2 = v1;
   cout << "v2 = ";
   for (iter = v2.begin(); iter != v2.end(); iter++)
      cout << iter->second << " ";
   cout << endl;

// move v1 into v2
   v2.clear();
   v2 = move(v1);
   cout << "v2 = ";
   for (iter = v2.begin(); iter != v2.end(); iter++)
      cout << iter->second << " ";
   cout << endl;
   }

Sortie

v1 = 10 
v2 = 10 
v2 = 10 

Configuration requise

En-tête : <mappage>

Espace de noms : std

Voir aussi

Référence

map, classe

Bibliothèque STL (Standard Template Library)