我正在嘗試創建銀行記錄並嘗試使用鏈接列表。我做了銀行課程,我試圖把它作爲主要課程中的一個對象並打印輸出。所以如果我輸入詹姆斯作爲名字,黑色作爲我的姓氏,200作爲平衡。它應該打印輸出:名字:詹姆斯,姓:黑色,平衡:200.如果我添加另一個第一個,最後一個餘額。它應該用舊記錄打印新記錄。如何將對象放入鏈表中?
Example:
First name Lastname Balance
James Shown 4000
Kyle Waffle 2000
銀行類別:
public class Customer2 {
String Firstname,Lastname;
public int balance, amount;
int total=0;
int total2=0;
Scanner input = new Scanner(System.in);
public Customer2(String n, String l, int b){
Firstname=n;
Lastname=l;
balance=b;
}
public void withdraw(int amount){
total=balance-amount;
balance=total;
}
public void deposit(int amount){
total=balance+amount;
balance=total;
}
public void display(){
System.out.println("FirstName: "+" Lastname: "+" Balance");
System.out.println(Firstname+" "+Lastname+" " +balance);
}
主類:在顧客2類
LinkedList<Customer2> list = new LinkedList<Customer2>();
list.add("Bob");
list.getfirst("Lastname");
你的問題是什麼? – ByeBye
如何將我的銀行類作爲對象放入鏈接列表中? –
您需要創建一個新的customer2對象並將其添加到您的鏈接列表 –