您好,登錄后才能下訂單哦!
自帶測試類
源代碼:
package testaccount;
public class TestAccount{
public static void main(String args[]){
Account ss=new Account(1122,20000);
ss.setannualInterestRate(4.5);
ss.withDraw(2500);
ss.deposit(3000);
System.out.println("The ss's id is "+ ss.getid());
System.out.println("The ss's balance is "+ ss.getbalance());
System.out.println("The ss's dateCreated is "+ ss.getdateCreated());
}
}
class Account{
private int id=0;
private double balance=0;
private double annualInterestRate=0;
private java.util.Date dateCreated=new java.util.Date();
public Account(){
}
public Account(int newid,int newbalance){
id=newid;
balance=newbalance;
}
public int getid(){
return id;
}
public double getbalance(){
return balance;
}
public double getannualInterestRate(){
return annualInterestRate;
}
public void setid(int newid){
id=newid;
}
public void setbalance(double newbalance){
balance=newbalance;
}
public void setannualInterestRate(double newannualInterestRate){
annualInterestRate=newannualInterestRate;
}
public double getMonthlyInterest(){
return (annualInterestRate/12)/100;
}
public String getdateCreated(){
return dateCreated.toString();
}
public void withDraw(double draw){
balance-=draw;
}
public void deposit(double draw){
balance+=draw;
}
}
運行結果:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。