哪个更好检查密钥是否在C ++的hash_map中? at with try ... catch block或find with iterator comparison?

时间:2013-01-20 04:54:27

标签: c++ hashmap

据我所知,有两种基本方法可以检查项目是否在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    
}

只想知道哪一个更好?为了提高效率?

1 个答案:

答案 0 :(得分:5)

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