c++ unordered_map.count
时间: 2024-03-10 13:42:35 浏览: 98
C++中的哈希容器unordered_map使用示例
在C++中,`unordered_map.count`是用于统计`unordered_map`容器中某个特定键的出现次数的函数。它返回一个整数值,表示该键在容器中出现的次数。
下面是`unordered_map.count`的使用示例:
```cpp
#include <iostream>
#include <unordered_map>
int main() {
std::unordered_map<std::string, int> myMap;
myMap["apple"] = 3;
myMap["banana"] = 2;
myMap["orange"] = 5;
int count = myMap.count("apple");
std::cout << "The count of 'apple' is: " << count << std::endl;
return 0;
}
```
输出结果为:
```
The count of 'apple' is: 1
```
阅读全文