public class HashSet<E>
extends AbstractSet<E>
implements Set<E>, Cloneable, java.io.Serializable
HashSet 內部使用了 HashMap:
private transient HashMap<E,Object> map;
如果使用一個已經有的集合來初始化 HashSet:
/**
* Constructs a new set containing the elements in the specified
* collection. The <tt>HashMap</tt> is created with default load factor
* (0.75) and an initial capacity sufficient to contain the elements in
* the specified collection.
*
* @param c the collection whose elements are to be placed into this set
* @throws NullPointerException if the specified collection is null
*/
public HashSet(Collection<? extends E> c) {
map = new HashMap<>(Math.max((int) (c.size()/.75f) + 1, 16));
addAll(c);
}
java是開源的,可以直接看原始碼。
而且對於一個java程式設計師來說,JDK裡面的集合架構是必看的。
--------- 答案被忽略了,因此新增點兒內容(2014年11月6日) ---------------
HashSet
原始碼:定義
HashSet
內部使用了HashMap
:如果使用一個已經有的集合來初始化
HashSet
:預設的載入因子為 0.75。這個數值已常數
DEFAULT_LOAD_FACTOR
的方式定義在HashMap
中。現在重點來了,加入元素:
我使用的是最新的1.8版本,程式碼相對於1.6版都重寫了,又得重新看一遍了
看中間部分程式碼。如果key相同,則新value取代舊的。否則繼續找next。 如果hash不同,肯定不同;如果hash相同,則不一定相同。相對於直接比較 key 的容器,
HashMap
無疑是速度快不少。 (至此回答了問題1,為什麼Set
比List
快?)由於 gist 被牆了,於是貼到了 chopapp:註釋版HashMap