第一,你的帖子不包含
Singleton
-a
单身汉
确保类只有一个实例,而不是拥有所有这些实例
static
字段,可以是实例字段;因为只有一个实例
单身汉
。最后,既然你提到
Inventory
构造函数可能会引发
IOException
您可以懒洋洋地初始化该字段,并用try-catch将其包装起来。喜欢
public final class DataStorage {
private List<Employee> empList = new ArrayList<Employee>();
private List<Manager> managerList = new ArrayList<Manager>();
private List<Dish> allDishes = new ArrayList<Dish>();
private List<Table> allTables = new ArrayList<Table>();
private Inventory inventory = null;
private static DataStorage _instance = new DataStorage();
public static DataStorage getInstance() {
return _instance;
}
private DataStorage() {
}
public List<Employee> getEmpList() {
return empList;
}
public List<Manager> getManagerList() {
return managerList;
}
public List<Dish> getAllDishes() {
return allDishes;
}
public List<Table> getAllTables() {
return allTables;
}
public Inventory getInventory() {
if (inventory == null) {
try {
inventory = new Inventory();
} catch (IOException e) {
e.printStackTrace();
}
}
return inventory;
}
}