Java线程池的几种实现方法和区别介绍实例详解
发布时间 - 2026-01-11 00:43:28 点击率:次下面通过实例代码为大家介绍Java线程池的几种实现方法和区别:
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Random;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
public class TestThreadPool {
// -newFixedThreadPool与cacheThreadPool差不多,也是能reuse就用,但不能随时建新的线程
// -其独特之处:任意时间点,最多只能有固定数目的活动线程存在,此时如果有新的线程要建立,只能放在另外的队列中等待,直到当前的线程中某个线程终止直接被移出池子
// -和cacheThreadPool不同,FixedThreadPool没有IDLE机制(可能也有,但既然文档没提,肯定非常长,类似依赖上层的TCP或UDP
// IDLE机制之类的),所以FixedThreadPool多数针对一些很稳定很固定的正规并发线程,多用于服务器
// -从方法的源代码看,cache池和fixed 池调用的是同一个底层池,只不过参数不同:
// fixed池线程数固定,并且是0秒IDLE(无IDLE)
// cache池线程数支持0-Integer.MAX_VALUE(显然完全没考虑主机的资源承受能力),60秒IDLE
private static ExecutorService fixedService = Executors.newFixedThreadPool(6);
// -缓存型池子,先查看池中有没有以前建立的线程,如果有,就reuse.如果没有,就建一个新的线程加入池中
// -缓存型池子通常用于执行一些生存期很短的异步型任务
// 因此在一些面向连接的daemon型SERVER中用得不多。
// -能reuse的线程,必须是timeout IDLE内的池中线程,缺省timeout是60s,超过这个IDLE时长,线程实例将被终止及移出池。
// 注意,放入CachedThreadPool的线程不必担心其结束,超过TIMEOUT不活动,其会自动被终止。
private static ExecutorService cacheService = Executors.newCachedThreadPool();
// -单例线程,任意时间池中只能有一个线程
// -用的是和cache池和fixed池相同的底层池,但线程数目是1-1,0秒IDLE(无IDLE)
private static ExecutorService singleService = Executors.newSingleThreadExecutor();
// -调度型线程池
// -这个池子里的线程可以按schedule依次delay执行,或周期执行
private static ExecutorService scheduledService = Executors.newScheduledThreadPool(10);
public static void main(String[] args) {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
List<Integer> customerList = new ArrayList<Integer>();
System.out.println(format.format(new Date()));
testFixedThreadPool(fixedService, customerList);
System.out.println("--------------------------");
testFixedThreadPool(fixedService, customerList);
fixedService.shutdown();
System.out.println(fixedService.isShutdown());
System.out.println("----------------------------------------------------");
testCacheThreadPool(cacheService, customerList);
System.out.println("----------------------------------------------------");
testCacheThreadPool(cacheService, customerList);
cacheService.shutdownNow();
System.out.println("----------------------------------------------------");
testSingleServiceThreadPool(singleService, customerList);
testSingleServiceThreadPool(singleService, customerList);
singleService.shutdown();
System.out.println("----------------------------------------------------");
testScheduledServiceThreadPool(scheduledService, customerList);
testScheduledServiceThreadPool(scheduledService, customerList);
scheduledService.shutdown();
}
public static void testScheduledServiceThreadPool(ExecutorService service, List<Integer> customerList) {
List<Callable<Integer>> listCallable = new ArrayList<Callable<Integer>>();
for (int i = 0; i < 10; i++) {
Callable<Integer> callable = new Callable<Integer>() {
@Override
public Integer call() throws Exception {
return new Random().nextInt(10);
}
};
listCallable.add(callable);
}
try {
List<Future<Integer>> listFuture = service.invokeAll(listCallable);
for (Future<Integer> future : listFuture) {
Integer id = future.get();
customerList.add(id);
}
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(customerList.toString());
}
public static void testSingleServiceThreadPool(ExecutorService service, List<Integer> customerList) {
List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
for (int i = 0; i < 10; i++) {
Callable<List<Integer>> callable = new Callable<List<Integer>>() {
@Override
public List<Integer> call() throws Exception {
List<Integer> list = getList(new Random().nextInt(10));
boolean isStop = false;
while (list.size() > 0 && !isStop) {
System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
isStop = true;
}
return list;
}
};
listCallable.add(callable);
}
try {
List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
for (Future<List<Integer>> future : listFuture) {
List<Integer> list = future.get();
customerList.addAll(list);
}
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(customerList.toString());
}
public static void testCacheThreadPool(ExecutorService service, List<Integer> customerList) {
List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
for (int i = 0; i < 10; i++) {
Callable<List<Integer>> callable = new Callable<List<Integer>>() {
@Override
public List<Integer> call() throws Exception {
List<Integer> list = getList(new Random().nextInt(10));
boolean isStop = false;
while (list.size() > 0 && !isStop) {
System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
isStop = true;
}
return list;
}
};
listCallable.add(callable);
}
try {
List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
for (Future<List<Integer>> future : listFuture) {
List<Integer> list = future.get();
customerList.addAll(list);
}
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(customerList.toString());
}
public static void testFixedThreadPool(ExecutorService service, List<Integer> customerList) {
List<Callable<List<Integer>>> listCallable = new ArrayList<Callable<List<Integer>>>();
for (int i = 0; i < 10; i++) {
Callable<List<Integer>> callable = new Callable<List<Integer>>() {
@Override
public List<Integer> call() throws Exception {
List<Integer> list = getList(new Random().nextInt(10));
boolean isStop = false;
while (list.size() > 0 && !isStop) {
System.out.println(Thread.currentThread().getId() + " -- sleep:1000");
isStop = true;
}
return list;
}
};
listCallable.add(callable);
}
try {
List<Future<List<Integer>>> listFuture = service.invokeAll(listCallable);
for (Future<List<Integer>> future : listFuture) {
List<Integer> list = future.get();
customerList.addAll(list);
}
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(customerList.toString());
}
public static List<Integer> getList(int x) {
List<Integer> list = new ArrayList<Integer>();
list.add(x);
list.add(x * x);
return list;
}
}
使用:LinkedBlockingQueue实现线程池讲解
//例如:corePoolSize=3,maximumPoolSize=6,LinkedBlockingQueue(10) //RejectedExecutionHandler默认处理方式是:ThreadPoolExecutor.AbortPolicy //ThreadPoolExecutor executorService = new ThreadPoolExecutor(corePoolSize, maximumPoolSize, 1L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(10)); //1.如果线程池中(也就是调用executorService.execute)运行的线程未达到LinkedBlockingQueue.init(10)的话,当前执行的线程数是:corePoolSize(3) //2.如果超过了LinkedBlockingQueue.init(10)并且超过的数>=init(10)+corePoolSize(3)的话,并且小于init(10)+maximumPoolSize. 当前启动的线程数是:(当前线程数-init(10)) //3.如果调用的线程数超过了init(10)+maximumPoolSize 则根据RejectedExecutionHandler的规则处理。
关于:RejectedExecutionHandler几种默认实现讲解
//默认使用:ThreadPoolExecutor.AbortPolicy,处理程序遭到拒绝将抛出运行时RejectedExecutionException。
RejectedExecutionHandler policy=new ThreadPoolExecutor.AbortPolicy();
// //在 ThreadPoolExecutor.CallerRunsPolicy 中,线程调用运行该任务的execute本身。此策略提供简单的反馈控制机制,能够减缓新任务的提交速度。
// policy=new ThreadPoolExecutor.CallerRunsPolicy();
// //在 ThreadPoolExecutor.DiscardPolicy 中,不能执行的任务将被删除。
// policy=new ThreadPoolExecutor.DiscardPolicy();
// //在 ThreadPoolExecutor.DiscardOldestPolicy 中,如果执行程序尚未关闭,则位于工作队列头部的任务将被删除,然后重试执行程序(如果再次失败,则重复此过程)。
// policy=new ThreadPoolExecutor.DiscardOldestPolicy();
希望本篇文章对您有所帮助
# Java线程池实例
# Java线程池详解
# java 多线程Thread与runnable的区别
# java创建线程的两种方法区别
# java 线程详解及线程与进程的区别
# java 线程中start方法与run方法的区别详细介绍
# Java线程池的几种实现方法和区别介绍
# java中thread线程start和run的区别
# java基本教程之Thread中start()和run()的区别 java多线程教程
# 基于Java多线程notify与notifyall的区别分析
# Java线程中sleep和wait的区别详细介绍
# 详解多线程及Runable 和Thread的区别
# 池中
# 将被
# 的是
# 几种
# 移出
# 也有
# 放在
# 超过了
# 之处
# 不多
# 如果没有
# 就用
# 对您
# 承受能力
# 很短
# 抛出
# 用得
# 时长
# 源代码
# 重试
相关栏目:
【
网站优化151355 】
【
网络推广146373 】
【
网络技术251813 】
【
AI营销90571 】
相关推荐:
如何在腾讯云服务器上快速搭建个人网站?
Laravel如何处理文件下载请求?(Response示例)
JavaScript Ajax实现异步通信
Laravel怎么导出Excel文件_Laravel Excel插件使用教程
北京网站制作公司哪家好一点,北京租房网站有哪些?
米侠浏览器网页背景异常怎么办 米侠显示修复
Laravel怎么实现软删除SoftDeletes_Laravel模型回收站功能与数据恢复【步骤】
javascript基于原型链的继承及call和apply函数用法分析
佛山网站制作系统,佛山企业变更地址网上办理步骤?
如何正确选择百度移动适配建站域名?
如何制作公司的网站链接,公司想做一个网站,一般需要花多少钱?
详解vue.js组件化开发实践
如何快速生成ASP一键建站模板并优化安全性?
Laravel Octane如何提升性能_使用Laravel Octane加速你的应用
如何快速搭建安全的FTP站点?
香港服务器租用费用高吗?如何避免常见误区?
浅述节点的创建及常见功能的实现
php中::能调用final静态方法吗_final修饰静态方法调用规则【解答】
php后缀怎么变mp4格式错误_修改扩展名提示格式不对怎么办【技巧】
Laravel事件和监听器如何实现_Laravel Events & Listeners解耦应用的实战教程
如何挑选高效建站主机与优质域名?
在线制作视频网站免费,都有哪些好的动漫网站?
Laravel项目如何进行性能优化_Laravel应用性能分析与优化技巧大全
PHP 实现电台节目表的智能时间匹配与今日/明日轮播逻辑
如何解决hover在ie6中的兼容性问题
简单实现jsp分页
如何快速启动建站代理加盟业务?
Laravel如何实现多语言支持_Laravel本地化与国际化(i18n)配置教程
Chrome浏览器标签页分组怎么用_谷歌浏览器整理标签页技巧【效率】
Laravel定时任务怎么设置_Laravel Crontab调度器配置
Laravel如何升级到最新的版本_Laravel版本升级流程与兼容性处理
打造顶配客厅影院,这份100寸电视推荐名单请查收
如何快速查询网站的真实建站时间?
Laravel用户密码怎么加密_Laravel Hash门面使用教程
免费视频制作网站,更新又快又好的免费电影网站?
长沙企业网站制作哪家好,长沙水业集团官方网站?
魔毅自助建站系统:模板定制与SEO优化一键生成指南
怎么用AI帮你设计一套个性化的手机App图标?
Java遍历集合的三种方式
ChatGPT回答中断怎么办 引导AI继续输出完整内容的方法
香港服务器建站指南:免备案优势与SEO优化技巧全解析
Laravel如何保护应用免受CSRF攻击?(原理和示例)
青岛网站建设如何选择本地服务器?
非常酷的网站设计制作软件,酷培ai教育官方网站?
如何为不同团队 ID 动态生成多个非值班状态按钮
如何快速搭建个人网站并优化SEO?
Win11关机界面怎么改_Win11自定义关机画面设置【工具】
Laravel如何与Vue.js集成_Laravel + Vue前后端分离项目搭建指南
Laravel Asset编译怎么配置_Laravel Vite前端构建工具使用
如何用PHP工具快速搭建高效网站?

