您好,登錄后才能下訂單哦!
這篇文章主要介紹“JDK的Set源碼分析”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“JDK的Set源碼分析”文章能幫助大家解決問(wèn)題。
首先,我們看一下HashSet
private transient HashMap<E,Object> map;
// Dummy value to associate with an Object in the backing Map
private static final Object PRESENT = new Object();
可見(jiàn),他適配了HashMap,那么他的功能是如何委托給HashMap結(jié)構(gòu)的呢?
public boolean add(E e) {
return map.put(e, PRESENT)==null;
}
在hashMap中,我們大多數(shù)時(shí)候是用value,但是在set的時(shí)候,卻很好的利用了已有類(lèi)HashMap,他利用了HashMap的key的唯一性來(lái)保證存儲(chǔ)在Set中的元素的唯一性;
private static final Object PRESENT = new Object();
是這個(gè)HashMap所有key的value,他只是一個(gè)形式,而我們真正的數(shù)據(jù)是存在在key中的資源;
我們最后拿到的迭代器也是:
public Iterator<E> iterator() {
return map.keySet().iterator();
}
map的keySet的迭代器;
同理,我們看看LinkedhashMap;
public LinkedHashSet(int initialCapacity, float loadFactor) {
super(initialCapacity, loadFactor, true);
}
/**
* Constructs a new, empty linked hash set with the specified initial
* capacity and the default load factor (0.75).
*
* @param initialCapacity the initial capacity of the LinkedHashSet
* @throws IllegalArgumentException if the initial capacity is less
* than zero
*/
public LinkedHashSet(int initialCapacity) {
super(initialCapacity, .75f, true);
}
/**
* Constructs a new, empty linked hash set with the default initial
* capacity (16) and load factor (0.75).
*/
public LinkedHashSet() {
super(16, .75f, true);
}
調(diào)用了父類(lèi)的構(gòu)造函數(shù);構(gòu)造函數(shù)如下:
HashSet(int initialCapacity, float loadFactor, boolean dummy) {
map = new LinkedHashMap<E,Object>(initialCapacity, loadFactor);
}
生出了LinkedHashMap;
同理,我們一樣可見(jiàn)到treeMap的實(shí)現(xiàn):
private transient NavigableMap<E,Object> m;
// Dummy value to associate with an Object in the backing Map
private static final Object PRESENT = new Object();
關(guān)于“JDK的Set源碼分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。