代码之家  ›  专栏  ›  技术社区  ›  bjskishore123

如何重载==运算符以允许在多个比较中使用它?

  •  2
  • bjskishore123  · 技术社区  · 14 年前

    我试图重载==运算符来比较下面这样的对象。

    class A
    {
        int a;
    public:
        A(int x) { a = x; }
        bool operator==(const A& obRight)
        {
            if(a == obRight.a)
            {
                return true;
            }
            return false;
        }
    };
    
    int main()
    {
        A ob(10), ob2(10), ob3(10);
        if(ob == ob2) // This equality comparison compiles fine.
            cout<<"Equal"<<endl;
         if(ob == ob2 == ob3) //This line doesn't compile as overloaded 
                              // == operator doesn't return object (returns bool)
               cout<<"Equal"<<endl;
    }
    


    喜欢 if(ob == ob2 == ob3)

    我应该重载使用friend函数吗?

    3 回复  |  直到 14 年前
        1
  •  11
  •   Puppy    14 年前

    不,你根本误解了你的手术。

    if (ob == ob2 == ob3) =
    if (ob == (ob2 == ob3)
    

    if (A == (A == A))
    if (A == bool) // Oh dear, no == operator for bool!
    

    你需要有

    if ((ob == ob2) && (ob == ob3))
    if ((A == A) && (A == A))
    if (bool && bool) // fine
    
        2
  •  11
  •   Loki Astari    14 年前

    通常你 不要这样做 用真代码。

    但作为一项学术活动。

    #include <iostream>
    using namespace std;
    
    template<typename T>
    class Test
    {
        public:
            Test(T const& v, bool s)
                :value(v)
                ,state(s)
        {}
    
        Test operator==(T const& rhs) const
        {
            return Test<T>(value, state && value == rhs);
        }
        operator bool() const
        {
            return state;
        }
        private:
            T const&    value;
            bool        state;
    };
    
    class A
    {
        int a;
        public:
        A(int x) { a = x; }
        Test<A> operator==(const A& obRight) const
        {
            return Test<A>(*this, a == obRight.a);
        }
    };
    
    int main()
    {
        A ob(10), ob2(10), ob3(14);
        if(ob == ob2) // This equality comparison compiles fine.
            cout<<"Equal"<<endl;
        if(ob == ob2 == ob3) 
            cout<<"Equal"<<endl;
    }
    
        3
  •  1
  •   kilotaras    14 年前

    您可以创建这样的函数

    #include<stdarg.h>
    template<class T>
    bool equals(size_t num, T val,...)
    {
        va_list arguments;
    
        va_start(arguments,num);
    
        for(size_t i = 0; i<num; ++i)
            if(val != va_arg(arguments, int))
            {
                va_end ( arguments );
                return false;       
            }
        va_end ( arguments );
        return true;
    }
    

    使用它

    if(equals(3,ob1,ob2,ob3))
        //do some stuff here