C ++:编译器没有看到重载的运算符

时间:2013-03-12 13:29:57

标签: c++ compiler-errors operator-overloading overloading

我一直试图实现链表迭代器类。当我在这里使用重载的“!=”运算符时编译器抱怨:

for (itr = (test0.begin()); itr != (test0.end()); ++itr)
{
    cout << *itr;
}

这是错误:

error: no match for ‘operator!=’ in ‘itr != SinglyLinkedList<Object>::end() [with Object = int]()’

我不明白为什么它找不到匹配,因为test0.end()和itr都是迭代器。

以下是重载运算符的代码:

bool operator!= (iterator &rhs)
{
    return (this->current != rhs.current);
}

提前致谢。

1 个答案:

答案 0 :(得分:5)

我怀疑这是因为const-correctness:

bool operator!= (iterator const &rhs) const
{
    return (this->current != rhs.current);
}