我有一个作为类的库存列表,然后是一个具有如下所示构造函数的商店类。商店有一个链接到股票类的数组列表。
我将如何访问某个商店的数组列表?
EG 如果我选择商店 argos,我想要里面的所有库存。每个商店都有自己的库存
public Store(int storeId, String name, String location){
this.storeId = storeId;
this.name = name;
this.location = location;
items = new ArrayList<Stock>();
}