如何调用unordered_map
时间: 2024-01-01 08:23:33 浏览: 68
以下是调用unordered_map的示例代码:
```cpp
#include <iostream>
#include <unordered_map>
#include <string>
int main() {
// 创建一个空的unordered_map容器
std::unordered_map<std::string, std::string> umap;
// 向unordered_map中插入键值对
umap.insert(std::make_pair("key1", "value1"));
umap.insert(std::make_pair("key2", "value2"));
umap.insert(std::make_pair("key3", "value3"));
// 访问unordered_map中的元素
std::cout << "Value of key2: " << umap["key2"] << std::endl;
// 检查unordered_map中是否存在某个键
if (umap.find("key4") != umap.end()) {
std::cout << "key4 found in unordered_map" << std::endl;
} else {
std::cout << "key4 not found in unordered_map" << std::endl;
}
// 删除unordered_map中的某个键值对
umap.erase("key3");
// 遍历unordered_map中的所有键值对
for (const auto& pair : umap) {
std::cout << "Key: " << pair.first << ", Value: " << pair.second << std::endl;
}
return 0;
}
```
阅读全文