0

我收到以下编译错误:

main.cc: In function 'int main(int, char**)':¶
main.cc:200: error: no match for 'operator==' in 'rt1 == rt2'¶
triple.hh:124: note: candidates are: bool Triple<T1, T2, T3>::operator==(const    Triple<T1,T2, T3>&) [with T1 = int, T2 = int, T3 = int] <near match>¶
main.cc:27: note:                 bool operator==(const Special&, const Special&)¶

虽然我已经为我的模板类实现了 operator== 重载,如下所示:

bool operator==(const Triple<T1, T2, T3>& another) {
    return (a == another.first() and b == another.second() and c == another.third());
}

对于我的模板类:

template <typename T1, typename T2, typename T3>
class Triple

你知道问题可能是什么吗?非常感谢。

4

1 回答 1

1

您的布尔运算符被声明为非常量。rt1如果是 const 引用,请按如下方式修复它。注意添加的const关键字。

bool operator==(const Triple<T1, T2, T3>& another) const {

说明:C++ 有两种基本语法用于重载比较运算符;具有一个其他参数的成员运算符,或具有两个参数的静态运算符。但是,在这两种情况下,您都应该确保两个操作数都是const,具有各自的语法。

从理论上讲,可以提供不同版本const和非const版本的操作符来做细微的不同的事情,所以编译器称你的为近似匹配,但仍然不是匹配。

于 2012-10-15T11:44:45.393 回答