标签:
public HashSet() { map = new HashMap<>(); } public boolean add(E e) { return map.put(e, PRESENT)==null; }
HashSet是HashMap的key值集合,所以是唯一的
HashSet
原文地址:http://my.oschina.net/u/1792430/blog/388916