Java常用代码工具类 2023-5-17 14:42 | 816 | 2 | Java 110 字 | 5 分钟 一、线程池 public class ThreadPool { /** * 核心线程 */ public static final int CORE_POOL_SIZE = Runtime.getRuntime().availableProcessors() + 1; /** * 线程池最大线程数 */ public static final in…