为了账号安全,请及时绑定邮箱和手机立即绑定

学生选课系统的Set集合是怎么定义的?

courseToSelect =new ArrayList();容器都是用的ArrayList。

为什么Set方法中如果使用了get方法或者按顺序输入了课程;Set类就变成了有序,Set是定义在student类里面的this.courses =new HashSet();?

正在回答

1 回答

student类的构造方法中初始化定义了

public class Student {
	
	public String id;
	public String name;
	public Set<Course> courses;
	
	public Student(String id,String name){
		this.id=id;
		this.name=name;
		this.courses=new HashSet<Course>();	
	}
	
}


0 回复 有任何疑惑可以回复我~
#1

时空中的沙粒 提问者

为什么用了get方法或是顺序输入课程Set集合就变有序了?
2016-02-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

学生选课系统的Set集合是怎么定义的?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信