Queue的方法
程序员文章站
2024-03-18 12:04:04
...
**Queue的常见方法**
public interface Queue<E> extends Collection<E> {
boolean add(E e); // 添加元素到队列中,相当于进入队尾排队。如果已满,抛出异常
boolean offer(E e); //添加元素到队列中,相当于进入队尾排队.
E remove(); //移除队头元素,如果为空,抛出异常
E poll(); //移除队头元素,如果为空,返回null
E element(); //获取但不移除队列头的元素,如果为空,抛出异常
E peek(); //获取但不移除队列头的元素,如果为空,返回null
}