月度归档: 2023 年 5 月

1 篇文章

Java常用代码工具类
一、线程池 public class ThreadPool { /** * 核心线程 */ public static final int CORE_POOL_SIZE = Runtime.getRuntime().availableProcessors() + 1; /** * 线程池最大线程数 */ public static final in…