map的4种常见的插入元素的方式及区别

[cpp]  view plain  copy
  1. #include <iostream>  
  2. using namespace std;  
  3.   
  4. #include <string>  
  5. #include <map>  
  6.   
  7. map<int,string> mp;  
  8.   
  9. void showMap()  
  10. {  
  11.     cout<<"\n遍历结果:"<<endl;  
  12.     for(map<int,string>::iterator iter = mp.begin();iter != mp.end(); ++iter)  
  13.     {  
  14.         cout<<iter->first<<" - "<<iter->second<<endl;  
  15.     }  
  16.     cout<<endl;  
  17. }  
  18.   
  19. int main()  
  20. {  
  21.     pair<map<int,string>::iterator,bool> myPair;//保存insert()的返回值  
  22.     //方法[1]  
  23.     myPair = mp.insert(pair<int,string> (1,"student01"));  
  24.     if(true == myPair.second)  
  25.     {  
  26.         cout<<"插入("<<myPair.first->first<<","<<myPair.first->second<<")成功."<<endl;  
  27.     }  
  28.     else  
  29.     {  
  30.         cout<<"插入失败! 对应的key值: "<<myPair.first->first<<endl;  
  31.     }  
  32.       
  33.     //方法[2]  
  34.     myPair = mp.insert(make_pair(2,"student02"));  
  35.     myPair = mp.insert(make_pair(2,"student22"));//插入失败,不会产生覆盖  
  36.   
  37.     if(true == myPair.second)  
  38.     {  
  39.         cout<<"插入("<<myPair.first->first<<","<<myPair.first->second<<")成功."<<endl;  
  40.     }  
  41.     else  
  42.     {  
  43.         cout<<"插入失败! 对应的key值: "<<myPair.first->first<<endl;  
  44.     }  
  45.       
  46.     //方法[3]  
  47.     myPair = mp.insert(map<int,string>::value_type(3,"student03"));  
  48.       
  49.     //方法[4]  
  50.     mp[4] = "student04";  
  51.     mp[4] = "student44";//覆盖  
  52.   
  53.     showMap();  
  54.   
  55.     return 0;  
  56. }  

程序运行结果:



前3种方法,采用的是insert()方法,该方法返回的是pair<iterator,bool>,进行重复插入时,插入失败,不会产生覆盖;
第4种方法,插入重复将会覆盖原有的值。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值