threadpool
Posted CodeZLei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了threadpool相关的知识,希望对你有一定的参考价值。
Executors和ThreadPoolExecutor两者的区别和联系
jdk中文文档 https://blog.fondme.cn/apidoc/jdk-1.8-google/
https://blog.csdn.net/qq_25806863/article/details/71126867
https://blog.csdn.net/hayre/article/details/53291712
4. 【强制】线程池不允许使用 Executors 去创建,而是通过 ThreadPoolExecutor 的方式,这样
的处理方式让写的同学更加明确线程池的运行规则,规避资源耗尽的风险。
说明: Executors 返回的线程池对象的弊端如下:
1) FixedThreadPool 和 SingleThreadPool:
允许的请求队列长度为 Integer.MAX_VALUE,可能会堆积大量的请求,从而导致 OOM。
2) CachedThreadPool 和 ScheduledThreadPool:
允许的创建线程数量为 Integer.MAX_VALUE, 可能会创建大量的线程,从而导致 OOM。
以上是关于threadpool的主要内容,如果未能解决你的问题,请参考以下文章