10.3 小任务

C++运算符重载实现的过程,代码

#include <iostream>

using namespace std;

class fun
{
private:
    int num;

public:
    fun(){}
    fun(int a):num(a){}  //有参构造

    //定义显示函数
    void show()
    {
        cout<<num<<endl;
    }

    //定义全局函数实现加法运算符重载
    friend const fun operator+(const fun &a,const fun &b);

    //成员函数实现减法运算符重载
    const fun operator-(const fun &a)const
    {
        fun c;
        c.num=this->num-a.num;
        return c;
    }

    //成员函数实现关系运算符的重载
    bool operator>(const fun &a)const
    {
        return this->num>a.num;
    }

    //成员函数实现赋值运算符的重载
    fun & operator=(const fun &a)
    {
        this->num=a.num;
        return *this;
    }

    //成员函数实现后自增运算符的重载
    fun operator++(int)
    {
        this->num++;
        return *this;
    }


};
const fun operator+(const fun &a,const fun &b)
{
    fun c;
    c.num=a.num+b.num;
    return c;
}




int main()
{
    fun a(101);   //有参构造
    a.show();    //显示函数
    fun b(2);       //有参构造
    fun c=a+b;    //加法运算符
    fun d=a-b;      //减法运算符
    a++;                //后自增运算符
    if(a>b)             //逻辑>运算符
    {
        cout<<"a>b"<<endl;
    }else
    {
        cout<<"a<b"<<endl;
    }
    a.show();
    b.show();
    c.show();
    d.show();

    d=a;            //赋值运算符
    d.show();

    return 0;
}

运行结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值