代码取自:http://www.cplusplus.com/reference/map/map/find/ // map::find #include <iostream> #include <map> intmain () { std::map<char,int> mymap; std::map<char,int>::iterator it; mymap['a']=50; mymap['b']=100; mymap['c']=150; mymap['d']=200; it=mymap.find('b'...
map容器find用法 map容器find⽤法 map容器是STL中⽐较强⼤的⼀个container,下⾯的代码主要讲的是map容器中find函数的⽤法,// map::find #include <iostream> #include <map> int main (){ std::map<char,int> mymap;std::map<char,int>::iterator it;mymap['a']=50;mymap['b']=100;...