91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java源碼解析阻塞隊列ArrayBlockingQueue常用方法的示例分析

發布時間:2021-08-18 13:55:01 來源:億速云 閱讀:154 作者:小新 欄目:編程語言

這篇文章主要介紹了Java源碼解析阻塞隊列ArrayBlockingQueue常用方法的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

首先看一下ArrayBlockingQueue的成員變量。如下圖。最主要的成員變量是items,它是一個Object類型的數組用于保存阻塞隊列中的元素。其次是takeIndex,putIndex,count,分別表示了從隊列獲取元素的位置,往隊列里放元素的位置和隊列中元素的個數。然后是lock,notEmpty和notFull三個和鎖相關的成員變量。lock是一個可重入鎖,而notEmpty和notFull是和lock綁定的2個Condition。對可重入鎖不是很了解的同學,可以參考這篇文章https://www.jb51.net/article/154207.htm。對可重入鎖的理解,是理解ArrayBlockingQueue的基礎。也可以這么說,理解了可重入鎖,那么在理解ArrayBlockingQueue就很順利了。

  /** The queued items **/
  final Object[] items;
  /** items index for next take, poll, peek or remove **/
  int takeIndex;
  /** items index for next put, offer, or add **/
  int putIndex;
  /** Number of elements in the queue **/
  int count;
  /**
   * Concurrency control uses the classic two-condition algorithm
   * found in any textbook.
   **/
  /** Main lock guarding all access **/
  final ReentrantLock lock;
  /** Condition for waiting takes **/
  private final Condition notEmpty;
  /** Condition for waiting puts **/
  private final Condition notFull;
  /**
   * Shared state for currently active iterators, or null if there
   * are known not to be any. Allows queue operations to update
   * iterator state.
   **/
  transient Itrs itrs = null;

接下來介紹ArrayBlockingQueue的主要方法。首先是入隊方法。ArrayBlockingQueue的入隊方法有好幾個,功能略有差異,下面我們逐一介紹各個入隊方法。首先看一下put方法,如下圖。put方法的功能是,往隊列尾部插入指定元素,如果隊列已滿,那么就等待可用空間。方法的實現過程是,首先判斷元素是否非空。然后,進行加鎖,加鎖后判斷隊列是否已滿。如果已滿,則等待不滿條件。當被喚醒后,進行入隊操作。入隊方法中,會喚醒在notEmpty條件上等待的線程。

  /**
   * Inserts the specified element at the tail of this queue, waiting
   * for space to become available if the queue is full.
   * @throws InterruptedException {@inheritDoc}
   * @throws NullPointerException {@inheritDoc}
   **/
  public void put(E e) throws InterruptedException {
    checkNotNull(e);
    final ReentrantLock lock = this.lock;
    lock.lockInterruptibly();
    try {
      while (count == items.length)
        notFull.await();
      enqueue(e);
    } finally {
      lock.unlock();
    }
  }
  /**
   * Inserts element at current put position, advances, and signals.
   * Call only when holding lock.
   **/
  private void enqueue(E x) {
    // assert lock.getHoldCount() == 1;
    // assert items[putIndex] == null;
    final Object[] items = this.items;
    items[putIndex] = x;
    if (++putIndex == items.length)
      putIndex = 0;
    count++;
    notEmpty.signal();
  }

另一個入隊方法是offer,代碼如下。這個方法與add方法的區別是,offer方法是立刻返回的,它并不像add方法那樣,當隊列滿時會一直等待。

  /**
   * Inserts the specified element at the tail of this queue if it is
   * possible to do so immediately without exceeding the queue's capacity,
   * returning {@code true} upon success and {@code false} if this queue
   * is full. This method is generally preferable to method {@link #add},
   * which can fail to insert an element only by throwing an exception.
   * @throws NullPointerException if the specified element is null
   **/
  public boolean offer(E e) {
    checkNotNull(e);
    final ReentrantLock lock = this.lock;
    lock.lock();
    try {
      if (count == items.length)
        return false;
      else {
        enqueue(e);
        return true;
      }
    } finally {
      lock.unlock();
    }
  }

接下來看一下出隊方法take,代碼如下。首先對可重入鎖加鎖,然后判斷元素個數是否為0.如果為0,則等待不空條件,否則進行出隊操作。

  public E take() throws InterruptedException {
    final ReentrantLock lock = this.lock;
    lock.lockInterruptibly();
    try {
      while (count == 0)
        notEmpty.await();
      return dequeue();
    } finally {
      lock.unlock();
    }
  }

ArrayListBlockingqueue中還有其他相關方法,這里就不一一介紹了。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java源碼解析阻塞隊列ArrayBlockingQueue常用方法的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

化隆| 清涧县| 眉山市| 西峡县| 隆化县| 固安县| 区。| 泸溪县| 阜宁县| 城固县| 武宁县| 集贤县| 四川省| 石柱| 新余市| 神农架林区| 灵山县| 阿克陶县| 湖州市| 丹巴县| 谢通门县| 怀仁县| 凤山市| 台南县| 尼玛县| 荥阳市| 合山市| 阿拉善右旗| 房山区| 正安县| 上虞市| 兴隆县| 唐河县| 岳普湖县| 察雅县| 奉贤区| 万源市| 岢岚县| 福鼎市| 威远县| 洛川县|