unordered_map修改键值
时间: 2023-11-24 11:51:24 浏览: 250
修改软件键值的
可以通过使用下标运算符[]来修改unordered_map中的键值。如果键不存在,则会创建一个新的键值对。下面是一个例子:
```cpp
#include <iostream>
#include <unordered_map>
using namespace std;
int main() {
unordered_map<string, int> myMap = {{"apple", 5}, {"banana", 10}, {"orange", 15}};
// 修改键值
myMap["apple"] = 7;
// 输出修改后的键值
cout << "The new value of apple is: " << myMap["apple"] << endl;
return 0;
}
```
输出结果为:
```
The new value of apple is: 7
```
阅读全文