LinkedBlockingQueue源碼分析

LinkedBlockingQueue是基於鏈表的阻塞隊列,其類定義以下所示java static class Node<E> {//節點的定義 E item; Node<E> next; Node(E x) { item = x; } } /** 隊列的容量,默認爲Integer.MAX_VALUE */ privat
相關文章
相關標籤/搜索