Exception in thread "main" java.lang.NullPointerException
这种异常发生在你使用了一个对象,但是这个对象是null,或者没有被创建。
解决也很简单,根据报错的地方看哪个对象是空指针
例如:
//创建一个学生类数组;
Student [] student=new Student[5];
//在使用数组成员时 必须进行实例化
student[0]=new Student();
student[1]=new Student();
student[2]=new Student();
student[3]=new Student();
student[4]=new Student();
这里我们优化一下代码,使用for循环来实例化对象数组
for(int i=0;i<student.length;i++){
student[i]=new Student;
}
网友评论