![]() |
---|
此 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的 hash_map Class。 |
备注
在清除在 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