C++11 map 插入参数
时间: 2024-01-24 10:04:03 浏览: 31
C++ map使用
5星 · 资源好评率100%
C++11 中的 map 插入参数包括键和值,可以使用 insert 函数或者 [] 运算符。insert 函数的参数是一个 pair 类型,包括键和值。使用 [] 运算符时,左边是键,右边是值。例如:
```c++
std::map<int, std::string> myMap;
// 使用 insert 函数插入键值对
myMap.insert(std::pair<int, std::string>(1, "one"));
// 使用 [] 运算符插入键值对
myMap[2] = "two";
```
阅读全文