溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

JDK的Set源碼分析

發(fā)布時(shí)間:2022-04-06 16:32:38 來(lái)源:億速云 閱讀:111 作者:iii 欄目:編程語(yǔ)言

這篇文章主要介紹“JDK的Set源碼分析”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“JDK的Set源碼分析”文章能幫助大家解決問(wèn)題。

首先,我們看一下HashSet

  1.  private transient HashMap<E,Object> map;


  2.     // Dummy value to associate with an Object in the backing Map

  3.     private static final Object PRESENT = new Object();

可見(jiàn),他適配了HashMap,那么他的功能是如何委托給HashMap結(jié)構(gòu)的呢?

  1.  public boolean add(E e) {

  2.     return map.put(e, PRESENT)==null;

  3.     }

在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中的資源;

我們最后拿到的迭代器也是:

  1.   public Iterator<E> iterator() {

  2.     return map.keySet().iterator();

  3.     }


map的keySet的迭代器;

同理,我們看看LinkedhashMap;

  1.  public LinkedHashSet(int initialCapacity, float loadFactor) {

  2.         super(initialCapacity, loadFactor, true);

  3.     }


  4.     /**

  5.      * Constructs a new, empty linked hash set with the specified initial

  6.      * capacity and the default load factor (0.75).

  7.      *

  8.      * @param   initialCapacity   the initial capacity of the LinkedHashSet

  9.      * @throws  IllegalArgumentException if the initial capacity is less

  10.      *              than zero

  11.      */

  12.     public LinkedHashSet(int initialCapacity) {

  13.         super(initialCapacity, .75f, true);

  14.     }


  15.     /**

  16.      * Constructs a new, empty linked hash set with the default initial

  17.      * capacity (16) and load factor (0.75).

  18.      */

  19.     public LinkedHashSet() {

  20.         super(16, .75f, true);

  21.     }

調(diào)用了父類(lèi)的構(gòu)造函數(shù);構(gòu)造函數(shù)如下:

  1.     HashSet(int initialCapacity, float loadFactor, boolean dummy) {

  2.     map = new LinkedHashMap<E,Object>(initialCapacity, loadFactor);

  3.     }

生出了LinkedHashMap;

同理,我們一樣可見(jiàn)到treeMap的實(shí)現(xiàn):

  1.     private transient NavigableMap<E,Object> m;


  2.     // Dummy value to associate with an Object in the backing Map

  3.     private static final Object PRESENT = new Object();

關(guān)于“JDK的Set源碼分析”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI