美文网首页
Interface Queue

Interface Queue

作者: aliusa | 来源:发表于2018-02-27 14:33 被阅读0次

    Queue队列继承了Collection接口,并扩展了队列相关方法

    添加到队尾,取/删除从对头。

    boolean add(E e);

    复写,在队列尾部添加,会多抛一个异常

    boolean offer(E e);

    扩展,也是在队列尾部添加,只是不会抛出异常

    IllegalStateException* when no space is currently available.

    E remove();

    读取队列头部元素然后移除,抛出异常:NoSuchElementException if this queue is empty

    E poll();

    读取队列头部元素然后移除,返回null if this queue is empty

    E element();

    返回队列头部元素,抛出异常:NoSuchElementException if this queue is empty

    E peek();

    返回队列头部元素,返回null if this queue is empty

    相关文章

      网友评论

          本文标题:Interface Queue

          本文链接:https://www.haomeiwen.com/subject/qpwuzxtx.html