提问人:Leandro Zárate 提问时间:11/1/2023 最后编辑:Leandro Zárate 更新时间:11/1/2023 访问量:55
如何制作对象容器以及如何在其他文件中使用它
How can i make a container of objects and how can i use it in other file
问:
我的主类中基本上有一个数组列表
public static void main(String[] args) {
List escenariosLi = new ArrayList<Escenario>();
String a = "";
escenariosLi.add(0,new Escenario(a, a, a, a, a, a));
}
我需要在我有类的另一个文件中使用这个数组Escenario
switch (slot){
case 0:
escenariosLi.set(0,new Escenario(nombre, ce, izq, der, arr, ab));
break;
}
我也尝试过创建index[0]
答: 暂无答案
评论
oracle.com
的这个教程。ArrayList
name
descriptions of the 4 directions
scenarios
Escenario.java