這很複雜,但我會盡我所能解釋我的問題。來自Customer類的對象客戶在存儲不同帳號的對象內部有一個arraylist。所有客戶對象都存儲在一個數組列表中。所以我的問題和問題是如何從陣列列表customerList中的數組列表中獲取帳號,它位於列表列表customerList中!從ArrayList中的ArrayList中的ArrayList中獲取值?
與以前的問題在這裏我學會了如何從對象的值這樣一個ArrayList裏面的一些幫助:
customerList.get(index).getAccountOwnername();
但現在我正在尋找這樣的事情:
customerList.get(index).getAccountNumbers(????);
幫助預先解決!謝謝!
編輯:
customerList.get(index).getAccountNumbers(arraylist that holds all account numbers)
我想要麼拿到屬於數組列表內一個賬戶號碼或賬戶號碼。我不希望它做的複雜,因爲我在Java編程,而新
編輯2:
裏面的Customer類我有這樣的代碼:
ArrayList<String> customerAccountsList = new ArrayList<String>();
主類我有內幕驗證碼:
// create an arraylist to store customer objects
ArrayList<Customer> customerList = new ArrayList<Customer>();
應完全按照您的寫法工作。客戶類應該有一個方法:'ArrayList getAccountNumbers(){}'這會給你一個String對象的ArrayList。 –
DejanLekic