|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object java.util.AbstractCollection<E> java.util.AbstractQueue<E>
E
- 此 collection 中所保存元素的类型public abstract class AbstractQueue<E>
此类提供某些 Queue
操作的骨干实现。此类中的实现适用于基本实现不 允许包含 null 元素时。add
、remove
和 element
方法分别基于 offer
、poll
和 peek
方法,但是它们通过抛出异常而不是返回 false 或 null 来指示失败。
扩展此类的 Queue 实现至少必须定义一个不允许插入 null 元素的 Queue.offer(E)
方法,该方法以及 Queue.peek()
、Queue.poll()
、Collection.size()
和 Collection.iterator()
都支持 Iterator.remove()
方法。通常还要重写其他方法。如果无法满足这些要求,那么可以转而考虑为 AbstractCollection
创建子类。
此类是 Java Collections Framework 的成员。
构造方法摘要 | |
---|---|
protected |
AbstractQueue()
子类使用的构造方法。 |
方法摘要 | |
---|---|
boolean |
add(E o)
将指定的元素添加到此队列中。 |
boolean |
addAll(Collection<? extends E> c)
将指定 collection 中的所有元素都添加到此队列中。 |
void |
clear()
移除此 collection 中的所有元素。 |
E |
element()
检索但不移除此队列的头。 |
E |
remove()
检索并移除此队列的头。 |
从类 java.util.AbstractCollection 继承的方法 |
---|
contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
从接口 java.util.Queue 继承的方法 |
---|
offer, peek, poll |
从接口 java.util.Collection 继承的方法 |
---|
contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
构造方法详细信息 |
---|
protected AbstractQueue()
方法详细信息 |
---|
public boolean add(E o)
Collection<E>
中的 add
AbstractCollection<E>
中的 add
o
- 元素
NullPointerException
- 如果指定的元素为 null
IllegalStateException
- 如果无法添加元素public E remove()
Queue<E>
中的 remove
NoSuchElementException
- 如果此队列为空。public E element()
Queue<E>
中的 element
NoSuchElementException
- 如果此队列为空。public void clear()
此实现重复调用 poll
,直到它返回 null 为止。
Collection<E>
中的 clear
AbstractCollection<E>
中的 clear
public boolean addAll(Collection<? extends E> c)
此实现在指定的 collection 上进行迭代,并依次将迭代器返回的每一个元素添加到此 collection 中。在试图添加某一元素(尤其是 null 元素)时如果遇到了运行时异常,则可能导致在抛出相关异常时只成功地添加了某些元素。
Collection<E>
中的 addAll
AbstractCollection<E>
中的 addAll
c
- 其元素将被添加到此 collection 中的 collection。
NullPointerException
- 如果指定的 collection 或其所有元素均为 null。
IllegalArgumentException
- 如果 c 是此队列。add(Object)
|
JavaTM 2 Platform Standard Ed. 5.0 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2004 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。