Java中创建线程池的方式有以下几种:
使用Executors类中的静态方法创建线程池,如:
ExecutorService executor = Executors.newFixedThreadPool(10);
使用ThreadPoolExecutor类的构造方法创建线程池,如:
ThreadPoolExecutor executor = new ThreadPoolExecutor(
10, // 核心线程数
20, // 最大线程数
60, // 线程空闲时间
TimeUnit.SECONDS, // 时间单位
new ArrayBlockingQueue<>(100)); // 任务队列
使用ScheduledExecutorService创建定时任务线程池,如:
ScheduledExecutorService executor = Executors.newScheduledThreadPool(10);
使用ForkJoinPool类创建线程池,如:
ForkJoinPool executor = new ForkJoinPool();
这些方式都是基于Java中的Executor框架来创建线程池,可以根据实际需求选择最合适的方式创建线程池。