for循环遍历map

对于C++最新特性的for循环,需要掌握其使用方法。

不要抗拒新知识、新特性、新用法。积极去学习+掌握,会带来更高的开发效率。

for  :  获取到的是map的迭代器。通过 first, second来获取key,val的值。

 

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

int main()
{
    map<int, string> myMap;
    myMap[1] = "abc1";
    myMap[3] = "abc3";
    myMap[6] = "abc6";
        myMap[2] = "abc2";

    for(auto it : myMap)
    {
        cout <<"key:"<<it.first<<",val:"<<it.second<<endl;
    }

    return 0;
}

 

posted @ 2020-07-08 14:40  He_LiangLiang  阅读(6234)  评论(0编辑  收藏  举报