Partager via


hash_map::operator=

[!REMARQUE]

Cette API est obsolète.l'alternative est unordered_map Class.

Remplace les éléments du hash_map par une copie d'un autre hash_map.

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

Paramètres

Paramètre

Description

_Right

hash_map Class est copié dans hash_map.

Notes

Après avoir supprimé tous les éléments existants dans hash_map, operator= copie ou entre le contenu d' _Right dans hash_map.

Exemple

// hash_map_operator_as.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_map<int, int> v1, v2, v3;
   hash_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 : <hash_map>

l'espace de noms : DST

Voir aussi

Référence

hash_map Class

Modèles Standard