关系运算符重载

岁酱吖の 提交于 2019-11-26 13:50:47

C++语言支持各种关系运算符重载(<,>,>=,<=,==),他们可用于比较C++内置的数据类型。

支持重载任意一个关系运算符,重载后的关系运算符可以用于比较类的对象。

/***
overrealate.cpp
***/
#include<iostream>
using namespace std;

class Distance
{
    private:
        int feet;
        int inches;
    public:
        Distance()
        {
            feet = 0;
            inches = 0;
        }
        Distance(int f,int i)
        {
            feet = f;
            inches = i;
        }

        void displayDistance()
        {
            cout << "F: " << feet << " I: " << inches << endl; 
        }

        Distance operator- ()
        {
            feet = -feet;
            inches = -inches;
            return Distance(feet,inches);
        }
        bool operator <(const Distance& d)
        {
            if(feet < d.feet)
            {   
                return true;
            }
            if(feet == d.feet && inches < d.inches)
            {
                return true;
            }
            return false;
        }
};

int main()
{
    Distance D1(11,10), D2(5,11);

    if(D1 < D2)
    {
        cout << "D1 is less than D2 " << endl;
    }
    else
    {
        cout << "D2 is less than D1" << endl; 
    }
    return 0;
}

运行结果:

exbot@ubuntu:~/wangqinghe/C++/20190808$ ./overrelation

D2 is less than D1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!