hash_map::operator=
[!참고]
이 API는 사용되지 않습니다.대신 unordered_map Class.
Hash_map의 요소를 다른 hash_map의 복사본으로 대체합니다.
hash_map& operator=(
const hash_map& _Right
);
hash_map& operator=(
hash_map&& _Right
);
매개 변수
Parameter |
설명 |
_Right |
hash_map Class 로 복사 되는 hash_map. |
설명
지우기 모든 기존 요소 뒤에 hash_map, operator= 의 내용을 이동 하거나 복사 _Right 에 hash_map.
예제
// hash_map_operator_as.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map<int, int> v1, v2, v3;
hash_map<int, int>::iterator iter;
v1.insert(pair<int, int>(1, 10));
cout << "v1 = " ;
for (iter = v1.begin(); iter != v1.end(); iter++)
cout << iter->second << " ";
cout << endl;
v2 = v1;
cout << "v2 = ";
for (iter = v2.begin(); iter != v2.end(); iter++)
cout << iter->second << " ";
cout << endl;
// move v1 into v2
v2.clear();
v2 = move(v1);
cout << "v2 = ";
for (iter = v2.begin(); iter != v2.end(); iter++)
cout << iter->second << " ";
cout << endl;
}
Output
v1 = 10
v2 = 10
v2 = 10
요구 사항
헤더: <hash_map>
네임 스페이스: std