📄 accountinfo.java
字号:
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 {
//帐号
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -