如何摆脱arrayList中的匿名对象?

时间:2015-12-06 22:28:21

标签: java object arraylist

ArrayList<Object> ingred = new ArrayList <Object>();
ingred.add(new Cup()); // From class Cup
ingred.remove(Cup); // Cup cannot be resolved to a variable               

无法使用任何一种删除方法。请帮忙!!

1 个答案:

答案 0 :(得分:1)

如何减少它#34;匿名&#34;?就像存储对它的引用一样:

Cup x = new Cup(); 
ingred.add(x); 
ingred.remove(x);