0

我在 ULong.h 中声明了这些原型

  bool operator== (const ULong& ) const;
  bool operator== (unsigned long long) const;
  friend bool operator== (unsigned long long, const ULong&);

在 ULong.cpp 中,我正在尝试实现它们:

bool ULong::operator== (const ULong& ul) const
{
    if(_num_digits != ul._num_digits)
        return false;
    for(unsigned i = 0;i < _num_digits; i++)
    {
        if(_number[i] != ul._number[i])
            return false;
    }
    return true;
}

bool ULong::operator== (unsigned long long l) const
{
    return *this == ULong(l);
}

ULong operator== (unsigned long long l, const ULong& ul)
{
    return ULong(l) == ul;
}

我得到编译器错误:

ULong.cpp:358:56:错误:新声明 'ULong operator==(long long unsigned int, const ULong&)' 在 ULong.cpp:10:0 包含的文件中:

ULong.h:76:15:错误:混淆旧声明'bool operator==(long long unsigned int, const ULong&)'</p>

我无法理解如何正确实施此方法。

4

3 回答 3

3

声明说它返回一个bool. 定义说它ULong出于某种原因返回一个。这是你的错误,正如编译器已经告诉你的那样。为什么要在定义中切换返回类型?

于 2013-10-16T07:24:15.473 回答
2

您的声明返回 abool但您的实现返回 a ULong

于 2013-10-16T07:22:35.930 回答
2

返回类型是问题所在。在定义中它的 ULong 应该是布尔值。;)

于 2013-10-16T07:26:01.817 回答