hash_multiset::operator=
[!참고]
이 API는 사용되지 않습니다.대신 unordered_multiset Class.
Hash_multiset의 요소를 다른 hash_multiset의 복사본으로 대체합니다.
hash_multiset& operator=(
const hash_multiset& _Right
);
hash_multiset& operator=(
hash_multiset&& _Right
);
매개 변수
Parameter |
설명 |
_Right |
hash_multiset Class 로 복사 되는 hash_multiset. |
설명
지우기 모든 기존 요소 뒤에 hash_multiset, operator= 의 내용을 이동 하거나 복사 _Right 에 hash_multiset.
예제
// hash_multiset_operator_as.cpp
// compile with: /EHsc
#include <hash_multiset>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset<int> v1, v2, v3;
hash_multiset<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
요구 사항
헤더: <hash_set>
네임 스페이스: std