黑马程序员技术交流社区

标题: 一个Student数组问题 [打印本页]

作者: decadence90    时间: 2015-7-19 12:23
标题: 一个Student数组问题
class Student {

        private String name;
        private int age;

        public Student() {
                super();
                // TODO Auto-generated constructor stub
        }
        public Student(String name, int age) {
                super();
                this.name = name;
                this.age = age;
        }

        public String getName() {
                return name;
        }

        public void setName(String name) {
                this.name = name;
        }

        public int getAge() {
                return age;
        }

        public void setAge(int age) {
                this.age = age;
        }

        @Override
        public String toString() {
                return "Student [name=" + name + ", age=" + age + "]";
        }
}
public class Student_Demo {
        public static void main(String[] args) {

                Student []  stuArr = new Student[10];
               
                stuArr[0].setName("tom");
               
        }
}


为什么会报错啊,求大神解答


作者: a12366456    时间: 2015-7-19 21:46
你创建了长度为10的空值数组,数组的所有元素还是空的, stuArr[0]值还是null,对着null调用方法当然会报错,要实例化student对象装进数组以后再操作数组的对应元素。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2