大家在做下面练习时,重点体会“Set是无序、不可重复”的核心要点。
【示例】HashSet的使用
public class Test {
public static void main(String[] args) {
Set<String> s = new HashSet<String>();
s.add("hello");
s.add("world");
System.out.println(s);
s.add("hello");//相同的元素不会被加入
System.out.println(s);
s.add(null);
System.out.println(s);
s.add (null);
System.out.println(s);
}
}
输出:
[world, hello]
[world, hello]
[null, world, hello]
[null, world, hello]
网友评论