Queue 中 remove() 和 poll() 区别

版权声明:转载请注名出处 https://blog.csdn.net/meism5/article/details/89884257

Queue 中 remove() 和 poll()有什么区别?

Queue 中 remove() 和 poll()都是用来从队列头部删除一个元素。
在队列元素为空的情况下,remove() 方法会抛出NoSuchElementException异常,poll() 方法只会返回 false 。

JDK1.8

/**
 * Retrieves and removes the head of this queue.  This method differs
 * from {@link #poll poll} only in that it throws an exception if this
 * queue is empty.
 *
 * @return the head of this queue
 * @throws NoSuchElementException if this queue is empty
 */
E remove();

/**
 * Retrieves and removes the head of this queue,
 * or returns {@code null} if this queue is empty.
 *
 * @return the head of this queue, or {@code null} if this queue is empty
 */
E poll();

猜你喜欢

转载自blog.csdn.net/meism5/article/details/89884257