#include #include #include using namespace std; int main(int argc, char const *argv[]) { map mp; map::iterator iter; const char key[3][20]={"img","system","ip"}; const char value[3][20]={"d:/a.img","win7","193.68.6.3"}; //make_pair插入 for(int i=0;i<2;i++){ mp.insert(make_pair(key[i],value[i])); } //pair插入 mp.insert(pair(key[2],value[2])); //数组插入方式 mp["addr"]="中国"; //迭代器取出元素 //循环取出元素 for(iter=mp.begin();iter!=mp.end();iter++){ cout<first<<"\t"<second<first,key1)==0){ cout<first<<"查找出来了!"<<"对应的值为:"<second<first<<"按照key查找出来了!"<<"对应的value为:"<second<first,drop_key)==0){ cout<first<<"按照key查找出来了!"<<"对应的value为:"<second<second,drop_value)==0){ cout<second<<"value查找出来了!"<<"对应的key为:"<first<first<<"\t"<second<