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

c++之map

时间:2014-06-17 20:51:38      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:class   string   c++   app   一个   第一个   

C++Map:

map<int,string> mapstudent;      mapstudent相当于一个键值对数组,存储元素是一个个的键值对。

mapstudent.insert(pair<int,string>(1,"std_one"));

换种写法:

Mapstudent[1]=”std_one”;     1是key,”std_one”是value

map<int,string>::iterator iter;    迭代器iter相当于一个指针,指向键值对(相当于结构体,有两个成员:first,second。first是key,second是value)

mapstudent.begin()     数组的第一个键值对;

mapstudent.end()       数组的最后一个键值对的后面一个。如果数组为空,则mapstudent.begin() == mapstudent.end()

c++之map,布布扣,bubuko.com

c++之map

标签:class   string   c++   app   一个   第一个   

原文地址:http://www.cnblogs.com/xiachj/p/3792199.html

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