Udostępnij za pośrednictwem


unordered_multimap::operator=

Kopiuje z tabeli mieszania.

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

Parametry

Parametr

Opis

_Right

Unordered_multimap, kopiowane do unordered_multimap.

Uwagi

Po wymazanie jakichkolwiek istniejących elementów w unordered_multimap, operator= albo kopiuje lub przenosi zawartość _Right do unordered_multimap.

Przykład

// unordered_multimap_operator_as.cpp
// compile with: /EHsc
#include <unordered_multimap>
#include <iostream>

int main( )
   {
   using namespace std;
   unordered_multimap<int, int> v1, v2, v3;
   unordered_multimap<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;
   }

Dane wyjściowe

v1 = 10 
v2 = 10 
v2 = 10 

Wymagania

Nagłówek: <unordered_multimap>

Obszar nazw: std

Zobacz też

Informacje

<unordered_map>

unordered_multimap Class

Standardowa biblioteka szablonu

Inne zasoby

<unordered_map> Członkowie