码迷,mamicode.com
首页 > 编程语言 > 详细

c++之map操作

时间:2020-02-13 18:58:13      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:nbsp   const   return   ret   second   clu   iter   bsp   string   

#include <iostream>
#include<map>
using namespace std;
int main() {
   
    map<string,int> nameAge;
    nameAge["sun"]=232;
    nameAge["sun2"]=23;
    nameAge["sun1"]=34;
  //map 查找 map
<string,int> ::const_iterator it =nameAge.find("sun"); if(it!=nameAge.end()){ cout<<it->second; } return 0; }

 

c++之map操作

标签:nbsp   const   return   ret   second   clu   iter   bsp   string   

原文地址:https://www.cnblogs.com/sun5/p/12304618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!