已采纳回答 / 禾只
public class Course { private String id,name; public Course(String id,String name){ this.id=id; this.name=name; } public Course() { // TODO Auto-generated constructor stub } public String getId(){ return id; } public void setId(String id){ this.id=i...
2015-09-02
最赞回答 / needself
全局变量Student student建立以后,creatStudentAndSelectCourse方法里的sd都要改为student,就解决了。
2015-08-29