我正在(前向)迭代 std::map 并想查找迭代器是否指向倒数第二个元素。我似乎无法在任何地方找到如何做到这一点。
我有:
bool
isSecondLastFile(const TDateFileInfoMap::const_iterator &tsFile)
{
TDateFileInfoMap::reverse_iterator secondLastIt = mFileInfoMap.rbegin() + 1;
return (tsFile == secondLastIt);
}
TDateFileInfoMap
std::map在哪里
我越来越:
error: no match for ‘operator==’ in ‘tsFile == secondLastIt’
/usr/lib/gcc/i686-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_tree.h:287: note: candidates are: bool std::_Rb_tree_const_iterator<_Tp>::operator==(const std::_Rb_tree_const_iterator<_Tp>&) const [with _Tp = std::pair<const long int, TFileInfo>]
这是否意味着我无法比较正向和反向迭代器?
如何确定前向迭代器是否指向倒数第二个元素?