次の方法で共有


hash_set::operator=

[!メモ]

この API は、互換性のために残されています。代わりに unordered_set クラスです。

別のhash_setのコピーとhash_setの要素を置き換えます。

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

パラメーター

パラメーター

説明

_Right

hash_set 内にコピーされる hash_set Class

解説

hash_setに hash_set、operator= のコピーまたは移動を既存の要素をすべて削除した後、の内容の _Right

使用例

// 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;
}

出力

v1 = 10 
v2 = 10 
v2 = 10 

必要条件

ヘッダー: <hash_set>

名前空間: std

参照

関連項目

hash_set Class

標準テンプレート ライブラリ