?? accountinfo.java
字號(hào):
package banking;
/**
* @author rainliu
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class AccountInfo {
//帳號(hào)
public String accountId = null;
//密碼
public String password = null;
//余額
public double balance;
public AccountInfo(String id,String password,double balance) {
this.accountId = id;
this.password = password;
this.balance = balance;
}
public AccountInfo(String id) {
this(id,"123456",0);
}
public AccountInfo() {
}
public AccountInfo(AccountInfo ai) {
accountId = ai.accountId;
password = ai.password;
balance = ai.balance;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -