ArrayList不提供get选项来检索数据

时间:2014-03-21 05:59:02

标签: java arraylist

我从现有的cutomer和计算机类创建客户和计算机arraylist,如下所示

ArrayList<Customer> customer = new ArrayList<Customer>();

ArrayList<Computer> computer = new ArrayList<Computer>();

但我无法获得检索数据的选项。任何人都可以解决这个问题吗?

3 个答案:

答案 0 :(得分:2)

customer.get(i)我是索引。

computer.get(i) 

你是这样的。

答案 1 :(得分:0)

在此处指定使用此方法。请阅读这些内容! http://docs.oracle.com/javase/7/docs/api/java/util/ArrayList.html

get(int index) 返回此列表中指定位置的元素。

答案 2 :(得分:-1)

对于客户: Customer ithCustomer = customer.get(i);(retrieve ith item in the customer list)