猿问

有没有办法使用变量来命名列表?

我正在使用 Java 导入一个包含主题类型和问题列表的 CSV 文件。我制作了一个主题列表(在我的测试中我有 10 个主题和 29 个问题)。


我想为每个主题创建一系列列表,但我不想将列表名称直接输入到我目前拥有的源代码中,而是想使用从 CSV 文件中的值生成的名称。


//current code (ExamQuestion is a custom class)

List<ExamQuestion> hardwareList = new ArrayList<>();


//desired code (in real version variable value would come from CSV file)

String listName = "hardwareList";

List<ExamQuestion> listName = new ArrayList<>();


BIG阳
浏览 100回答 2
2回答

慕妹3146593

您不能使用其他变量的字符串值来命名变量,但可能出于您的目的使用 HashMap 会很有用&nbsp;List<ExamQuestion> listName = new ArrayList<>();&nbsp;Map<String, List<ExamQuestion>> map = new HashMap<>();&nbsp;map.put("name", new ArrayList<>());

呼唤远方

在 Java 中,不能使用Strings 作为变量名。但是,您可以做的是创建一个Map<String, List<ExampleQuestion>>并存储到一个List<...>给定的String(它的“名称”)。
随时随地看视频慕课网APP

相关分类

Java
我要回答