线程池中的饱和策略 ThreadPoolExecutor允许提供一个BlockingQueue来保存等待执行的任务。 查看结构图 我们需要关注的方法是offer(E),put(E),take() new ...