java---面向对象 9 (继承性super)

题目:

 

代码:

Account类

package com.jichengsup;

public class Account {
    private int id ;
    private double balance ;
    private double annual ;
    
    public Account(int id, double balance, double annual) {
        super();
        this.id = id;
        this.balance = balance;
        this.annual = annual;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public double getBalance() {
        return balance;
    }

    public void setBalance(double balance) {
        this.balance = balance;
    }

    public double getAnnual() {
        return annual;
    }

    public void setAnnual(double annual) {
        this.annual = annual;
    }
    //返还月利润率
    public double getMonthly() {
        return annual / 12 ;
    }
    public void withdraw(double amt) {
        if(balance >= amt) {
            balance -= amt ;
            return ;
        }
        System.out.println("余额不足");
    }
    public void deposit(double amt) {
        if(amt > 0) {
            balance += amt ;
        }
    }
    
}
 

AccountTest类

package com.jichengsup;

public class AccountTest {
    public static void main(String[] args) {
        
        Account acc = new Account(1122, 20000, 0.045);
        acc.withdraw(30000);
        System.out.println("您的账户余额为:" + acc.getBalance());
        acc.withdraw(2500);
        System.out.println("您的账户余额为:" + acc.getBalance());
        acc.withdraw(3000);
        System.out.println("您的账户余额为:" + acc.getBalance());
    }
}
 

CheckAccount类

package com.jichengsup;

public class CheckAccount extends Account {
     private double famecard ;

    public CheckAccount(int id, double balance, double annual, double famecard) {
        super(id, balance, annual);
        this.famecard = famecard;
    }

    public double getFamecard() {
        return famecard;
    }

    public void setFamecard(double famecard) {
        this.famecard = famecard;
    }
     
     @Override
    public void withdraw(double amt) {
        if(getBalance() > amt) {
            super.withdraw(amt);
        }else if(famecard > amt - getBalance()) {
            famecard -= (amt - getBalance());
            super.withdraw(getBalance());
//        set.Balance(0);
        }else {
            System.out.println("超过可透支余额");
        }
    }
}
 

CheckAccounttest类

package com.jichengsup;

public class CheckAccounttest {
    public static void main(String[] args) {
        CheckAccount acc = new CheckAccount(1122, 20000, 0.045, 5000);
        acc.withdraw(5000);
        System.out.println("账户余额:" + acc.getBalance());
        System.out.println("可透支余额:" + acc.getFamecard());
        
        acc.withdraw(16000);
        System.out.println("账户余额:" + acc.getBalance());
        System.out.println("可透支余额:" + acc.getFamecard());
        
        acc.withdraw(5000);
        System.out.println("账户余额:" + acc.getBalance());
        System.out.println("可透支余额:" + acc.getFamecard());
    }
}
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值