有人可以在DayPlanner()
默认构造函数中告诉我下面发生了什么吗?以下是我的教授笔记,但我不明白他为什么new HomeObject[SIZE];
两次。
private HomeObject[] home = new HomeObject[SIZE]; // This is in the DayPlanner class
public DayPlanner() { // DayPlanner constructor
home = new HomeObject[SIZE];
}
答案 0 :(得分:0)
我认为有一个错误。可能必须在构造函数中实例化home
数组。