courses = new ArrayList<Course>();
units = new HashMap<Integer,Unit>();
staffs = new HashMap<Integer,Staff>();
我可以像这样将单元班和员工班映射到课程班吗?我想将数据作为序列化数据存储到 dat 文件中。
我的场景是这样的。课程单位多,课程主任1人,副主任1人,均来自职工班。
我确实喜欢第一个。问题是我有一个名为 database.java 的类,在那里我有一个这样的方法。
public boolean setDatabase(ArrayList<Course> iCourse, Map<Integer,Unit> iUnit)
所以如果我使用这个:
courses = new ArrayList<Course>();
units = new HashMap<Integer,Unit>();
staffs = new HashMap<Integer,Staff>();
我可以在下面试试这个吗?
public boolean setDatabase(ArrayList<Course> iCourse, Map<Integer,Unit> iUnit, Map<Integer,Staff> iStaff)