1 Star 0 Fork 0

Ronin-yue/STL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mymap.cpp 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ronin-yue 提交于 2021-11-16 15:58 . mymap
#include <iostream>
#include <map>
using namespace std;
int main()
{
//创建一个空的 map 关联式容器,该容器中存储的键值对,其中键为 string 字符串,值为 int 字符串类型
map<string, int> mymap;
//向 mymap 容器中添加数据
mymap["a"] = 1;
mymap["b"] = 2;
mymap["c"] = 3;
//使用 map 容器的迭代器,遍历 mymap 容器,并输出其中存储的各个键值对
for (map<string, int>::iterator mp = mymap.begin(); mp != mymap.end(); mp++)
{
cout << mp->first << "=>" << mp->second << endl;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Ronin-yue/STL.git
[email protected]:Ronin-yue/STL.git
Ronin-yue
STL
STL
master

搜索帮助