本文主要是介绍C++ map键值对容器demo(四十六),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.代码示例
#include <map>#include <string>#include <iostream>using namespace std; int main(){map<int,string> mapStudent;mapStudent.insert(pair<int, string>(1,"student_on"));mapStudent.insert(pair<int, string>(2,"student_two"));mapStudent.insert(pair<int, string>(3,"student_thre")); map<int,string>::iterator iter;for(iter = mapStudent.begin(); iter != mapStudent.end(); iter++){//iter->first:key iter->second:value cout<< iter->first << " " << iter->second << endl;} }
这篇关于C++ map键值对容器demo(四十六)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!