Set all = new HashSet();all.add(9);all.add(1);all.add(5);all.add(2);Iterator iter = all.iterator();while (iter.hasNext()) { System.out.println(iter.next());}set不允许重复,如果是int类型会进行排序.HashSet类中的元素是无序排列的。但是TreeSet是有序的,可以进行排序list可以重复