arraylist最终解决方案,以便可以添加项目
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arraylist最终解决方案,以便可以添加项目相关的知识,希望对你有一定的参考价值。
我试图将Clothing
对象从另一个类中的重写方法添加到arraylist,这迫使它被声明为final。但是,当一个变量被声明为final时,它无法更改,但这正是我需要做的。这是代码:
final List<Clothing> clothingItems = new ArrayList<>();
mClothingRef.addChildEventListener(new ChildEventListener() {
public void onChildAdded(DataSnapshot snapshot, String s) {
Clothing clothing = snapshot.getValue(Clothing.class);
clothingItems.add(clothing);
}
}
我如何解决clothingItems
是最终的事实,以便clothingItems
列表填充Clothing
对象?
以上是关于arraylist最终解决方案,以便可以添加项目的主要内容,如果未能解决你的问题,请参考以下文章
在 Xcode 中,如何创建一个新工作区并向其中添加 1 个项目,以便我可以看到该项目及其文件?