不包含重复元素的集合
没有带索引的方法,所以不能使用普通for循环遍历
元素有序:这里的有序不是指存储和取出的顺序,而是按照一定的规则进行排序,具体的排序取决于构造方法
TreeSet():根据元素的自然排序进行排序(数字从小到大)
TrssSet(Comparator comparator):根据指定的比较器进行排序
包含set集合的特点
public class AboutSet { public static void main(String[] args) { //创建set集合 Set set = new TreeSet(); set.add(1); set.add(1); set.add(5); set.add(3); for(Object o:set) { System.out.println(o); } } } output:1 3 5