Set courseSet = new HashSet();
Set<String> courseSet1 = new HashSet<String>();
Set<String> h = new HashSet<String>(Arrays.asList("a", "b"));
List和Set集合是可以像String类型那样声明和初始化的,区别在于Set本身是一个接口,只能实例化它的实现类,比如上面贴的HashSet。像第三行那样声明并初始化使用也可以。
public class Student{
public String id;
public String name;
public Set courses;
public Student(String id, String name){
this.id = id;
this.name = name;
this.courses = new HashSet();
}
}
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦