c++之map

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

上一篇:Spring 官方下载地址(非Maven)


下一篇:Spring@Autowired注解与自动装配