如何制作对象容器以及如何在其他文件中使用它

How can i make a container of objects and how can i use it in other file

提问人:Leandro Zárate 提问时间:11/1/2023 最后编辑:Leandro Zárate 更新时间:11/1/2023 访问量:55

问:

我的主类中基本上有一个数组列表

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]

Java 数组对象 arraylist

评论

1赞 Turing85 11/1/2023
你说的是数组还是 s?--- 在使用 OO 语言时,在“文件”中思考是灾难的根源。我建议阅读一些初学者的教程,例如 oracle.com 的这个教程。ArrayList
0赞 Leandro Zárate 11/1/2023
我知道如何在 siingle 文件中执行此操作。但我被要求把它分开......我无能为力。它用于大学项目。为了让您理解,我有一个模拟器,我需要在其中描述场景。此方案具有 和 .我想创建一个包含 10 个对象的数组。我需要能够随时更改任何这种情况。所以我做了一个数组列表,我希望能够从文件中编辑数组列表中的项目namedescriptions of the 4 directionsscenariosEscenario.java
0赞 Turing85 11/1/2023
我建议和你的教授/导师谈谈。他们最清楚他们想教你的方式和内容。
0赞 Leandro Zárate 11/1/2023
那不是一个选项:/他不是你可以与之交谈的人。他不听学生的话。
0赞 Grinding For Reputation 11/1/2023
你想如何使用它?

答: 暂无答案