错误:'operator =='的模糊重载

时间:2015-12-09 08:40:26

标签: c++ comparison operators

我试图理解为什么我的c ++编译器与以下代码混淆:

struct Enum
{
  enum Type
  {
    T1,
    T2
  };
  Enum( Type t ):t_(t){}
  operator Type () const { return t_; }
private:
  Type t_;
    // prevent automatic conversion for any other built-in types such as bool, int, etc 
  template<typename T> operator T () const;
};

  enum Type2
  {
    T1,
    T2
  };

int main()
{
  bool b;
  Type2 e1 = T1;
  Type2 e2 = T2;
  b = e1 == e2;

  Enum t1 = Enum::T1;
  Enum t2 = Enum::T2;
  b = t1 == t2;
  return 0;
}

编译导致:

$ c++ enum.cxx
enum.cxx: In function ‘int main()’:
enum.cxx:30:10: error: ambiguous overload for ‘operator==’ (operand types are ‘Enum’ and ‘Enum’)
   b = t1 == t2;
          ^
enum.cxx:30:10: note: candidates are:
enum.cxx:30:10: note: operator==(Enum::Type, Enum::Type) <built-in>
enum.cxx:30:10: note: operator==(int, int) <built-in>

我知道我可以通过提供明确的operator==

来解决症状
  bool operator==(Enum const &rhs) { return t_ == rhs.t_; }

但我真正想要的是解释为什么只有在enum内完成比较class导致歧义时才会导致歧义。我写了这个小的枚举包装,因为我只需要在我的代码中使用C ++ 03。

3 个答案:

答案 0 :(得分:2)

调用不明确,因为Enum::Typeint版本只有一次隐式转换有效,前者使用operator Type转换,后者使用operator T模板转换运算符。

目前还不清楚为什么转换为任何类型,但如果删除该运算符,代码为works

如果您使用的是C ++ 11,则应使用scoped enums代替。

答案 1 :(得分:0)

enum可以隐式转换为int(据我所知,它是由C的向后兼容性引起的。如果您可以使用C++11,则可以使用enum class {1}}解决此问题,因为作用域枚举不允许隐式转换为int

答案 2 :(得分:0)

Enum是实现定义的整数类型,主要是int。现在,您为enum实现的任何运算符就像您正在为类型int实现运算符。并且不允许为任何运算符重新定义整数类型,例如intdoublechar ...,因为它将改变编程语言本身的基本含义。