0

据我所知,有两种基本方法可以检查项目是否在 hash_map 中:

假设我们有一个 hash_map:hash_map<string, int> amap

如果我们要检查“abc”是否在地图中,那么我们可以

hash_map<string, int>::iterator itr = amap.find("abc");
if (itr != amap.end()) //in the map

或者:

try {
    int value = amap.at("abc");
}
catch(out_of_range& e) {
    //not there    
}

只是想知道哪个更好?出于效率考虑?

4

1 回答 1

5

使用find(). 测试迭代器几乎肯定会比捕获异常便宜得多。

于 2013-01-20T04:56:41.420 回答