软件包 | 描述 |
---|---|
java.util |
包含集合框架、遗留的集合类、事件模型、日期和时间的设施、国际化和各种实用工具类(一个字符串标记,一个随机数发生器,和一位阵列)。
|
java.util.concurrent |
在并发编程中常用的实用类。
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayDeque<E>
Deque 接口的可调整大小的数组实现。
|
class |
LinkedList<E>
双向链表实现的
List 和
Deque 接口。
|
Modifier and Type | Method and Description |
---|---|
static <T> Queue<T> |
Collections.asLifoQueue(Deque<T> deque)
|
Modifier and Type | Interface and Description |
---|---|
interface |
BlockingDeque<E>
一,另外支持阻塞操作等待队列非空的检索成为一个元素时
Deque ,等待空间变得可用时在deque容器存储元件。
|
Modifier and Type | Class and Description |
---|---|
class |
ConcurrentLinkedDeque<E>
一个基于链接节点的并发
deque无界。
|
class |
LinkedBlockingDeque<E>
一个可选择的有界
blocking deque基于链接节点。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.