C++ map中key值存在情况判定
作者:互联网
C++ map中key值存在情况判定
1、count函数
count函数用于统计key值在map中出现的次数,map的key不允许重复,因此如果key存在返回1,不存在返回0
if (testMap.count(key) == 0)
cout << "no this key" << endl;
2、find函数
iterator find ( const key_type& key );
如果key存在,则find返回key对应的迭代器,如果key不存在,则find返回尾后迭代器 .end()
例:
if (testMap.find(key) == testMap.end())
cout << "no this key" << endl;
标签:count,map,存在,testMap,C++,key,find 来源: https://www.cnblogs.com/huzhengyu/p/14398160.html