第一部分:
public class Student {
private String name;
private Integer chinese;
private Integer math;
private Integer english;
public Student(){
super();
}
public Student(String name,Integer chinese,Integer math,Integer english){
super();
this.name = name;
this.chinese = chinese;
this.math = math;
this.english = english;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getChinese() {
return chinese;
}
public void setChinese(Integer chinese) {
this.chinese = chinese;
}
public Integer getMath() {
return math;
}
public void setMa