标签:table 一个 lse queue bee https move cep null
查阅API文档,找到
add():增加一个元素。如果队列已满,则抛出一个IIIegaISlabEepeplian异常
Inserts the specified element at the tail of this queue. As the queue is unbounded, this method will never throw IllegalStateException or return false.
offer():添加一个元素并返回true。如果队列已满,则返回false
Inserts the specified element at the tail of this queue. As the queue is unbounded, this method will never return false.
add()方法是抛出异常让你处理,而offer()方法是直接返回false| 方法 | 作用 | 说明 |
|---|---|---|
| add() | 增加一个元素 | 如果队列已满,则抛出一个IIIegaISlabEepeplian异常 |
| remove() | 移除并返回队列头部的元素 | 如果队列为空,则抛出一个NoSuchElementException异常 |
| element() | 返回队列头部的元素 | 如果队列为空,则抛出一个NoSuchElementException异常 |
| offer() | 添加一个元素并返回true | 如果队列已满,则返回false |
| poll() | 移除并返问队列头部的元素 | 如果队列为空,则返回null |
| peek() | 返回队列头部的元素 | 如果队列为空,则返回null |
| put() | 添加一个元素 | 如果队列满,则阻塞 |
| take() | 移除并返回队列头部的元素 | 如果队列为空,则阻塞 |
关于Java队列更多详见:java队列——queue详细分析
Java 队列的`add()`方法和`offer()`方法的区别
标签:table 一个 lse queue bee https move cep null
原文地址:https://www.cnblogs.com/melodyjerry/p/13018920.html