Libreria C ++ Unordered_map - operator = Function

Descrizione

La funzione C ++ std::unordered_map::operator= sposta il contenuto di un unordered_map in un altro e modifica la dimensione se necessario.

Dichiarazione

Di seguito è riportata la dichiarazione per std :: unordered_map :: operator = function form std :: unordered_map header.

C ++ 11

unordered_map& operator=(unordered_map&& um);

Parametri

um - Un altro oggetto unordered_map dello stesso tipo.

Valore di ritorno

Restituisce questo puntatore.

Complessità temporale

Lineare cioè O (n)

Esempio

L'esempio seguente mostra l'utilizzo di std :: unordered_map :: operator = function.

#include <iostream>
#include <unordered_map>

using namespace std;

int main(void) {
   unordered_map<char, int> um1 = {
            {'a', 1},
            {'b', 2},
            {'c', 3},
            {'d', 4},
            {'e', 5}
            };

   unordered_map<char, int> um2;

   um2 = move(um1);

   cout << "Unordered map contains following elements: " << endl;

   for (auto it = um2.cbegin(); it != um2.cend(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

Compiliamo ed eseguiamo il programma sopra, questo produrrà il seguente risultato:

Unordered map contains following elements: 
e = 5
a = 1
b = 2
c = 3
d = 4