众所周知,ThreadPoolExecutor内部任务队列属性类型定义为:private final BlockingQueue
三种提交任务方式:
- put(E element):将指定元素插入队列,如果队列已满,则阻塞当前线程,直到有空间可用。
- add(E element):将指定元素插入队列,如果队列已满,则抛出异常。
- offer(E element):将指定元素插入队列,如果队列已满,则返回 false。
众所周知,ThreadPoolExecutor内部任务队列属性类型定义为:private final BlockingQueue
三种提交任务方式: