我有两个类:一个叫Student
,另一个叫Course
. 我想为一个简单的注册系统进行模拟。
我的Student
课堂部分具有以下形式:
class Student
{
private String id,
private Course[] listOfCourses;
private int numCourse;
//accesing methods
public registration(Course course){
listOfCourses[numCourse]=course;
numCourse++;
}
public Course[] getCourse(){
return listOfCourses;
}
}
该类Course
具有以下形式:
class Course
{
String id, String courseName;
//constructor
//accesing methods
}
我希望通过按 Java Swing 制作的表单中的按钮,将特定学生注册的课程内容显示到 jTable 中。我尝试了以下方法,但根本没有结果:
Student e=new Student();
Course d[]=new Course[4];
d=e.getCourses(); //to receive the array of Courses from the Student class
for (int i=0;i<d.length;i++){
jTable2.setValueAt(estLista[i].getName(), i, 0);
}
我该怎么做?我的意思是有一种方法可以将存储在Course
类中的数组内容放入ActionEvent
按钮中?