savingaccountvalue.java
来自「我在加拿大学习的一个比较复杂的在线银行程序.」· Java 代码 · 共 56 行
JAVA
56 行
package com.ebusiness.ebank.bean;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author not attributable * @version 1.0 */public class SavingAccountValue extends AccountValue{ private int minimumBalance; private int freeServiceLimit; private int fixedServiceFee; public int getFreeServiceLimit() { return this.freeServiceLimit; } public void setFreeServiceLimit(int limit) { this.freeServiceLimit = limit; } public int getMinimumBalance() { return this.minimumBalance; } public void setMinimumBalance(int balance) { this.minimumBalance = balance; } public int getFixedServiceFee() { return this.fixedServiceFee; } public void setFixedServiceFee(int fee) { this.fixedServiceFee = fee; } public String toString() { return this.getAccountValue() + ", Minimum Balance = " + minimumBalance + ", FreeService Limit = " + freeServiceLimit + ", fixedServiceFee = " + fixedServiceFee; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?