SwitchTest来如下 publicclassSwithcTest{publicstaticvoidmain(Stringargs[]){Student[]stuArr=newStudent[10];Studentstudent=newStudent();//添加student1student.setName("hans");student.setAge(23);student.setScore(60);student.setLable(1);stuArr[0]=student;Studentstudent1=newStudent();//添加student2s...
建议你在处理的时候,可以判断数组的大小,保证自己不要访问超过数组大小的元素,这样就不会出现数组越界异常了。