赞
踩
find()函数返回被查找元素的迭代器,通过该迭代器访问该元素。
如果找不到则返回尾指针,即map.end()
unordered_map<int,int>map = {{1,2},{3,4}};
auto it = map.find(1);
cout<<it->second<<endl; //返回值为2
auto IT = map.count(1);
cout<<IT<<endl; //返回值为 1 即key=1的个数
return 0;
返回被查找元素(key)的个数。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。