我有集合引用的集合(可能是 ArrayList 或任何其他),我想使用这些引用并创建 collections.ie
ArrayList courseTitle; //the collection references
ArrayList<Courses> courses=new ArrayList<Course>();
//an arraylist to store those references
现在我想使用这些参考并用它们创建集合。例如,如果我在课程中有参考“数学”或“科学”......那么我想创建名为“数学”或“数学列表”的集合。我我很困惑如何实现它。需要帮助!