ArrayList<Object> ingred = new ArrayList <Object>();
ingred.add(new Cup()); // From class Cup
ingred.remove(Cup); // Cup cannot be resolved to a variable
无法使用任何一种删除方法。请帮忙!!
答案 0 :(得分:1)
如何减少它#34;匿名&#34;?就像存储对它的引用一样:
Cup x = new Cup();
ingred.add(x);
ingred.remove(x);