我对一系列类有疑问。基本上我创建了一个'Student'类的数组,但是我不能为数组中实例的任何属性赋值,因为我在标题中得到了未处理的异常。这是代码:
class ControllerQueue
{
model.ModelStudent q = new model.ModelStudent();
static int capacity = 15;
model.ModelStudent[] arr = new model.ModelStudent[capacity];
int top = -1, rear = 0;
public ControllerQueue()
{
arr[0].name = "a";
arr[0].grade = 0;
}
}
我尝试从构造函数中赋值,但我仍然得到相同的结果。现在,异常本身显然是我没有实例化 Student 类,但我不明白为什么会这样说,我已经实例化了它。提前致谢。