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...