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];
}

<イテレータがメモリを指しているため使用できません。また、メモリが連続していることを保証できません。そのため、!=compareを使用する必要があります。

于 2012-10-24T12:13:13.963 に答える