我在使用地图迭代器时遇到了问题,我希望这里有人可以为我解决。
基本上,我需要返回我拥有的地图中的最后 10 个键,所以我尝试了这个:
for (map<int, char>::iterator i = (singleCountSwitched.end()); i != (singleCountSwitched.end()-10); --i) {
cout << (*i).first << ": " << (*i).second << endl;
}
但是它给了我以下错误:
main.cpp:150:112: error: no match for ‘operator-’ in ‘singleCountSwitched.std::map<_Key, _Tp, _Compare, _Alloc>::end<int, char, std::less<int>, std::allocator<std::pair<const int, char> > >() - 10’
这似乎是说不支持 - 运算符(使用 map.begin()+10 时抛出了类似的消息)。我是否错误地使用了迭代器?我认为 STL 容器的迭代器应该都重载了 + 和 -。