从源码看线程池_runstate is stored in the high-order bits-CSDN博客

网站介绍:文章浏览阅读192次。一、Java构建线程的方式1、继承Thread2、实现Runable3、实现Callable4、 线程池方式(java提供了构建线程池的方式)java提供了Executors可以去创建(在阿里规范中不能使用这种方式,因为这种方式对线程的控制力度比较低)手动创建线程池二、基本参数public ThreadPoolExecutor(int corePoolSize,\\核心线程数量 int maximumPoolSiz_runstate is stored in the high-order bits