2

我有以下代码:

boost::unordered_map<std::string, int> map;
map["hello"]++;
map["world"]++;

for(boost::unordered_map<std::string, int>::iterator it = map.begin(); it < map.end(); it++){
    cout << map[it->first];
}

当我尝试编译时出现以下错误但不知道为什么?

error: no match for ‘operator<’ in ‘it < map.boost::unordered::unordered_map<K, T, H, P, A>::end [with K = std::basic_string<char>, T = int, H = boost::hash<std::basic_string<char> >, P = std::equal_to<std::basic_string<char> >, A = std::allocator<std::pair<const std::basic_string<char>, int> >, boost::unordered::unordered_map<K, T, H, P, A>::iterator = boost::unordered::iterator_detail::iterator<boost::unordered::detail::ptr_node<std::pair<const std::basic_string<char>, int> >*, std::pair<const std::basic_string<char>, int> >]()
4

2 回答 2

5

尝试:

it != map.end()

作为for循环终止条件(而不是it < map.end())。

于 2012-10-24T12:12:52.960 回答
4

如果是迭代器,您必须使用!=运算符:

boost::unordered_map<std::string, int>::iterator it = map.begin();
for(; it != map.end(); ++it){
    cout << map[it->first];
}

你不能使用<,因为迭代器指向内存,你不能保证内存是连续的。这就是为什么你必须使用!=比较。

于 2012-10-24T12:13:13.963 回答