端午作业5555

#include <iostream>
#include <istream>
#include <iomanip>
using namespace std;

class RMB
{
private:
    int y;
    int j;
    int f;
    static int count;
public:
    RMB()
    {
        count++;
        cout << "已创建一个类对象,此时共用" << count << "个类对象" << endl;
    }
    RMB(int y, int j, int f):y(y),j(j),f(f)
    {
        count++;
        cout << "已创建一个类对象,此时共用" << count << "个类对象" << endl;;
    }
    ~RMB()
    {
        count--;
        cout << "已销毁一个类对象,此时共用" << count << "个类对象" << endl;;
    }

    const RMB operator+(const RMB &R)const
    {
        RMB a;
        a.y = y + R.y;
        a.j = j + R.j;
        a.f = f + R.f;
        return a;
    }
    const RMB operator-(const RMB &R)const
    {
        RMB a;
        a.y = y - R.y;
        a.j = j - R.j;
        a.f = f - R.f;
        return a;
    }
    bool operator>(const RMB &R)const
    {
        if(y>R.y && j>R.j && f>R.f)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    RMB &operator--()
    {
        --y;
        --j;
        --f;
        return *this;
    }
    const RMB operator--(int)
    {
        RMB a;
        a.y = y--;
        a.j = j--;
        a.f = f--;
        return a;
    }
    friend ostream &operator<<(ostream &cout, const RMB &R)
    {
        cout << "y = " << R.y << " j = " << R.j << " f = " << R.f <<endl;
        return cout;
    }
};

int RMB::count = 0;

int main()
{
    RMB r1(8,8,8);
    RMB r2(7,7,7);
    RMB r3 , r4;
    r3 = r1 + r2;
    r4 = r1 - r2;
    if(r3 > r4)
    {
        cout << "r3 > r4" << endl;
    }
    cout << r3 << endl;
    r3--;
    cout << r3 << endl;
    --r3;
    cout << r3 << endl;

    return 0;
}


  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值