我正在使用 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<>();
慕妹3146593
呼唤远方
相关分类