标签:带来 c++ second pac string 方法 遍历 nbsp div
对于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; }
标签:带来 c++ second pac string 方法 遍历 nbsp div
原文地址:https://www.cnblogs.com/music-liang/p/13266783.html