Udostępnij za pośrednictwem


hash_set::operator=

[!UWAGA]

Ten interfejs API jest nieaktualny.Alternatywą jest unordered_set Class.

Zastępuje elementy hash_set z kopią innego hash_set.

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

Parametry

Parametr

Opis

_Right

hash_set Class Są kopiowane do hash_set.

Uwagi

Po skasowaniu wszelkich istniejących elementów w hash_set, operator= albo kopiuje lub przenosi zawartość _Right do hash_set.

Przykład

// hash_set_operator_as.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

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

   v1.insert(10);

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

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

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

Dane wyjściowe

v1 = 10 
v2 = 10 
v2 = 10 

Wymagania

Nagłówek: <hash_set>

Przestrzeń nazw: std

Zobacz też

Informacje

hash_set Class

Standardowa biblioteka szablonu