hash_set::operator=
Not
Bu API artık kullanılmıyor.Alternatif unordered_set Class.
Hash_set öğeleri başka bir hash_set kopyası ile değiştirir.
hash_set& operator=(
const hash_set& _Right
);
hash_set& operator=(
hash_set&& _Right
);
Parametreler
Parametre |
Tanımlama |
_Right |
hash_set Class İçine kopyalanan hash_set. |
Notlar
İçinde var olan öğeleri silme sonra bir hash_set, operator= kopyalar veya taşır içeriğini _Right na hash_set.
Örnek
// 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;
}
Çıktı
v1 = 10
v2 = 10
v2 = 10
Gereksinimler
Başlık: <hash_set>
Ad alanı: std