我是靠谱客的博主 积极方盒,最近开发中收集的这篇文章主要介绍C++ STL map 遍历,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include<map>
#include<string>
#include<iostream>
using namespace std;

int main()
{
       map<string,int>   m;
       m["a"]=1;
       m["b"]=2;
       m["c"]=3;
       map<string,int>::iterator it;
       for(it=m.begin();it!=m.end();++it)
              cout<<"key: "<<it->first <<" value: "<<it->second<<endl;
       return     0;
}

 
map<string,int>::iterator it;     定义一个迭代指针it。 
it->first 为索引键值,it->second 为值。

最后

以上就是积极方盒为你收集整理的C++ STL map 遍历的全部内容,希望文章能够帮你解决C++ STL map 遍历所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部