您好,登錄后才能下訂單哦!
自帶測試類
源代碼:
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;
}
}
運(yùn)行結(jié)果:
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。