线程池

测试代码

// 创建线程池
ExecutorService service = Executors.newFixedThreadPool(3);
// 使用线程池
for (int i = 0; i < 10; i++) {
    service.submit(() -> System.out.println(Thread.currentThread().getName()));
}
// 关闭线程池
service.shutdown();

运行结果

pool-1-thread-1
pool-1-thread-3
pool-1-thread-1
pool-1-thread-1
pool-1-thread-3
pool-1-thread-2
pool-1-thread-3
pool-1-thread-1
pool-1-thread-3
pool-1-thread-2

可以看出创建的线程池有3个线程,多个任务循环使用三个线程

上一篇:NSThread和fork


下一篇:java-semaphore(令牌)