使用委托实现信用卡用户定时还款功能

using System;
namespace text
{
    //储蓄卡
    class GetPayout
    {
        private int Payout;
        public GetPayout(int Payout)
            {
            this.Payout=Payout;
            }
        //获取金额
        public int NeedMoney()
        {
            return this.Payout;
        }
        //剩余的金额
        public void LeftMoney(int NowMoney)
        {
            this.Payout = NowMoney;
        }

    }
    //信用卡
    class CreditPayin
    {
  

使用委托实现信用卡用户定时还款功能最先出现在Python成神之路

版权声明:
作者:主机优惠
链接:https://www.techfm.club/p/29028.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>