如何在每次用戶要創建新帳戶時創建唯一對象?Java如何創建唯一的對象名稱?
例如,如果用戶使得如果用戶發出另一個帳戶我想命名對象ACC2我想命名ACC1然後對象的帳戶。
Account ac = new Account(input.nextInt(),0,0);
。這是我需要它發生的地方。
我試着保持代碼儘可能簡單,也注意到我對java很陌生,這是一個個人項目,只是爲了學習。
System.out.println("Welcome to JAVA Bank");
System.out.println("____________________");
System.out.println("Plese Choose an Option: ");
System.out.println("");
System.out.println("(1) New Account");
System.out.println("(2) Enter Existing Account");
int choice = input.nextInt();
switch(choice){
case 1:
System.out.println("Please choose an Account ID#");
Account ac = new Account(input.nextInt(),0,0);
break;
public class Account {
private int id = 0;
private double balance = 0;
private double annualInterestRate = 0;
private Date dateCreated;
public Account(int id, double balance, double annualInterestRate) {
this.id = id;
this.balance = balance;
this.annualInterestRate = annualInterestRate;
this.dateCreated = new Date();
}
幫助表示感謝你。
你知道Java集合的? –
我對此並不熟悉。 – David
@大衛 - 然後熟悉它! https://docs.oracle.com/javase/tutorial/collections/你的目標是學習Java。 –