STL map:入门c++代码
时间: 2023-11-22 15:46:59 浏览: 283
下面是一个简单的入门 C++ 代码,用于演示如何使用 STL 中的 map 容器:
```c++
#include <iostream>
#include <map>
using namespace std;
int main() {
// 创建一个空的 map 容器
map<string, int> myMap;
// 向 map 容器中插入键值对
myMap["apple"] = 10;
myMap["banana"] = 20;
myMap["orange"] = 30;
// 访问 map 容器中的元素
cout << "apple: " << myMap["apple"] << endl;
cout << "banana: " << myMap["banana"] << endl;
cout << "orange: " << myMap["orange"] << endl;
// 遍历 map 容器中的所有元素
for (auto it = myMap.begin(); it != myMap.end(); it++) {
cout << it->first << ": " << it->second << endl;
}
return 0;
}
```
阅读全文