public class StuArrayList{
private ArrayList<Students> stus;
public StuArrayList(){
stus=new ArrayList<Students>();
}
public void add(Students stu){
stus.add(stu);
}
students类就只有stuId,stuName,stuSex的get,set方法和students的构造函数,没有别的代码了。 我在事件处理类中直接Students stus = new Students(id,name,sex);然后用ArrayList的add(stus);直接将那三个值存放在ArrayList中,这种做法对吗?
Java code
Students stus = new Students(id,name,sex);
sal.add(stus);
dlm.addElement((Object)sal.getStus());
lst.setModel(dlm);