unordered_set::operator=
將複製的雜湊資料表。
unordered_set& operator=(
const unordered_set& _Right
);
unordered_set& operator=(
unordered_set&& _Right
);
參數
參數 |
描述 |
_Right |
unordered_set Class被複製到unordered_set。 |
備註
之後清除任何現有的項目,在unordered_set, operator=是會複製或移動的內容_Right到unordered_set。
範例
// unordered_set_operator_as.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
int main( )
{
using namespace std;
unordered_set<int> v1, v2, v3;
unordered_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;
}
Output
v1 = 10
v2 = 10
v2 = 10
需求
標頭: <unordered_set>
Namespace: 標準