实验探究-ExecutorServiceAPI----未完待续!!!!
admin
2024-02-17 20:28:53
0

1 isShutDown & isTerminated & executorRunnableError & executorRunnableTask

isShutDown:当调用shutdown()或shutdownNow()方法后返回为true。
isTerminated:当调用shutdown()方法后,并且所有提交的任务完成后返回为true;
isTerminated:当调用shutdownNow()方法后,成功停止后返回为true;
如果线程池任务正常完成,都为false

public class ExecutorServiceTest {public static void main(String[] args) throws InterruptedException {
//        isShutdown();
//        isTerminated_1();
//        executorRunnableError();executorRunnableTask();}
}

1 isShutdown

private static void isShutdown() {ExecutorService executorService = Executors.newSingleThreadExecutor();/*** void execute(Runnable command);*/executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}});/*** 如果此执行器已关闭,则返回true。*/System.out.println(executorService.isShutdown());executorService.shutdown();System.out.println(executorService.isShutdown());/*** 执行完 executorService.shutdown(); 之后 还可以执行一个Runnable?不会,抛出异常!!!*/executorService.execute(() -> System.out.println("i will executor after shutdown ..."));/*** false* true* Exception in thread "main" java.util.concurrent.RejectedExecutionException: Task com.thread.excutor.ExecutorServiceTest$$Lambda$2/932583850@cac736f rejected from java.util.concurrent.ThreadPoolExecutor@5e265ba4[Shutting down, pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 0]* 	at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2063)* 	at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:830)* 	at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1379)* 	at java.util.concurrent.Executors$DelegatedExecutorService.execute(Executors.java:668)* 	at com.thread.excutor.ExecutorServiceTest.isShutdown(ExecutorServiceTest.java:32)* 	at com.thread.excutor.ExecutorServiceTest.main(ExecutorServiceTest.java:9)*/}

2 isTerminated

private static void isTerminated_1() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(1);executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}});executorService.shutdown();System.out.println("executorService.isShutdown() " + executorService.isShutdown());/*** 1、当需要用到isTerminated()函数判断线程池中的所有线程是否执行完毕时候,不能直接使用该函数,*    必须在shutdown()方法关闭线程池之后才能使用,否则isTerminated()永不为TRUE,线程将一直阻塞在该判断的地方,导致程序最终崩溃。* 2、判断全部提交的任务是否完成,当调用shutdown()方法后,并且所有提交的任务完成后返回为true*/System.out.println("1-executorService.isTerminated() " + executorService.isTerminated());System.out.println("executorService.isTerminating() " + executorService.isTerminating());/*** executorService.isShutdown() true* executorService.isTerminated() false* executorService.isTerminating() true*/}

3 executorRunnableError - IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() -> System.out.println(1 / 0)));

private static void executorRunnableError() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(10, new MyThreadFactory());IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() -> System.out.println(1 / 0)));executorService.shutdown();try {executorService.awaitTermination(10, TimeUnit.MINUTES);System.out.println("============over============");} catch (InterruptedException e) {e.printStackTrace();}}private static class MyThreadFactory implements ThreadFactory {private final static AtomicInteger SEQ = new AtomicInteger();@Overridepublic Thread newThread(@NotNull Runnable r) {Thread thread = new Thread(r);thread.setName("My-Thread-" + SEQ.getAndIncrement());/***  void uncaughtException(Thread t, Throwable e);*/thread.setUncaughtExceptionHandler((t, e) -> {System.out.println("The thread " + t.getName() + " executor failed.");System.out.println("=====================");});return thread;}}
/**
The thread My-Thread-6 executor failed.
The thread My-Thread-1 executor failed.
=====================
The thread My-Thread-14 executor failed.
=====================
The thread My-Thread-5 executor failed.
=====================
The thread My-Thread-4 executor failed.
=====================
The thread My-Thread-2 executor failed.
=====================
The thread My-Thread-0 executor failed.
=====================
The thread My-Thread-3 executor failed.
=====================
=====================
The thread My-Thread-7 executor failed.
=====================
The thread My-Thread-12 executor failed.
=====================
============over============Process finished with exit code 0
*/

4 executorRunnableTask-自定义task任务

/***                             | ---->* send  ---> store db ---> 10 | ---->*                             | ---->*/private static void executorRunnableTask() throws InterruptedException {ExecutorService executorService = Executors.newFixedThreadPool(10, new MyThreadFactory());IntStream.range(0, 10).boxed().forEach(i -> executorService.execute(() ->{MyTask myTask = new MyTask(i) {@Overridepublic void error(Throwable e) {System.out.println("The no : " + i + " failed, update status to ERROR.");}@Overridepublic void done() {System.out.println("The no : " + i + " successfully, update status to DONE.");}@Overridepublic void doExecutor() {if (i % 3 == 0) {int time = 1 / 0;}}@Overridepublic void doInit() {// do noting ...}};myTask.run();}));executorService.shutdown();executorService.awaitTermination(10, TimeUnit.MINUTES);System.out.println("=======================");/*** The no : 0 failed, update status to ERROR.* The no : 3 failed, update status to ERROR.* The no : 2 successfully, update status to DONE.* The no : 1 successfully, update status to DONE.* The no : 4 successfully, update status to DONE.* The no : 5 successfully, update status to DONE.* The no : 7 successfully, update status to DONE.* The no : 6 failed, update status to ERROR.* The no : 8 successfully, update status to DONE.* The no : 9 failed, update status to ERROR.* =======================*/}private abstract static class MyTask implements Runnable {public final Integer no;public MyTask(Integer no) {this.no = no;}@Overridepublic void run() {try {this.doInit();this.doExecutor();this.done();} catch (Throwable e) {this.error(e);}}public abstract void error(Throwable e);public abstract void done();public abstract void doExecutor();public abstract void doInit();}

2 任务拒绝 testAbortPolicy & testDiscardPolicy & testDiscardOldestPolicy & testCallerRunsPolicy

任务拒绝模块是线程池的保护部分,线程池有一个最大的容量,当线程池的任务缓存队列已满,并且线程池中的线程数目达到maximumPoolSize时,就需要拒绝掉该任务,采取任务拒绝策略,保护线程池。

package com.thread.excutor;import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;public class RejectedExecutionHandlerTest {public static void main(String[] args) {
//        testAbortPolicy();
//        testDiscardPolicy();testDiscardOldestPolicy();
//        testCallerRunsPolicy();}/*** 由提交任务的线程处理该任务*/private static void testCallerRunsPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.CallerRunsPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy " + Thread.currentThread().getName());} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> {System.out.println("xxxx == " +  Thread.currentThread().getName());});/*** xxxx == main* yyyy Thread-1* yyyy Thread-0* yyyy Thread-1** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** 1、丢弃队列最前面的任务,然后重新提交被拒绝的任务。* 2、当任务被拒绝添加时,会抛弃任务队列中最旧的任务也就是最先加入队列的,再把这个新任务添加进去。*    在rejectedExecution先从任务队列种弹出最先加入的任务,空出一个位置,然后再次执行execute方法把任务加入队列。*/private static void testDiscardOldestPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.DiscardOldestPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy " + Thread.currentThread().getName());} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx" + Thread.currentThread().getName()));/*** yyyy Thread-0* yyyy Thread-1* xxxxThread-0** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** 不处理新任务,直接丢弃掉*/private static void testDiscardPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,new ThreadPoolExecutor.DiscardPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);System.out.println("yyyy");} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx"));/*** yyyy* yyyy* yyyy** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}/*** Exception in thread "main" java.util.concurrent.RejectedExecutionException: Task com.thread.excutor.RejectedExecutionHandlerTest$$Lambda$5/604107971@7637f22 rejected from java.util.concurrent.ThreadPoolExecutor@4926097b[Running, pool size = 2, active threads = 2, queued tasks = 1, completed tasks = 0]* 	at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2063)* 	at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:830)* 	at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1379)* 	at com.thread.excutor.RejectedExecutionHandlerTest.testAbortPolicy(RejectedExecutionHandlerTest.java:36)* 	at com.thread.excutor.RejectedExecutionHandlerTest.main(RejectedExecutionHandlerTest.java:11)* yyyy* yyyy* yyyy** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/private static void testAbortPolicy() {ExecutorService executorService = new ThreadPoolExecutor(1,2,30,TimeUnit.SECONDS,new ArrayBlockingQueue<>(1),Thread::new,/*** AbortPolicy(默认):直接抛出RejectedExecutionException异常阻止系统正常运行。* 丢弃任务,并抛出异常:最大承载=maximumPoolSize + BlockingQueue*/new ThreadPoolExecutor.AbortPolicy());IntStream.range(0, 3).boxed().forEach(item -> {executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(10);System.out.println("yyyy");} catch (InterruptedException e) {e.printStackTrace();}});});try {TimeUnit.SECONDS.sleep(1);} catch (InterruptedException e) {e.printStackTrace();}executorService.execute(() -> System.out.println("xxxx"));}
}

3 AllowCoreThreadTimeOut

allowCoreThreadTimeOut 支持回收核心线程,合适定时任务这种回收。

package com.thread.excutor;import java.util.concurrent.Executors;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;public class TestAllowCoreThreadTimeOut {public static void main(String[] args) {
//        getActiveCount();
//        testAllowCoreThreadTimeOut_1();
//        testAllowCoreThreadTimeOut_2();
//        testAllowCoreThreadTimeOut_3();testAllowCoreThreadTimeOut_4();}private static void getActiveCount() {/***     public static ExecutorService newFixedThreadPool(int nThreads) {*         return new ThreadPoolExecutor(nThreads, nThreads,*                                       0L, TimeUnit.MILLISECONDS,*                                       new LinkedBlockingQueue());*     }*/ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);System.out.println("1 - " + executorService.getActiveCount());executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(10);} catch (InterruptedException e) {e.printStackTrace();}});try {TimeUnit.MILLISECONDS.sleep(20);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2 - " + executorService.getActiveCount());/*** 1 - 0* 2 - 1*/}private static void testAllowCoreThreadTimeOut_1() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** 不会销毁* 1===0* 2===0** Process finished with exit code 130 (interrupted by signal 2: SIGINT)*/}private static void testAllowCoreThreadTimeOut_2() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** Exception in thread "main" java.lang.IllegalArgumentException: Core threads must have nonzero keep alive times* 	at java.util.concurrent.ThreadPoolExecutor.allowCoreThreadTimeOut(ThreadPoolExecutor.java:1658)* 	at com.thread.excutor.TestU.testAllowCoreThreadTimeOut_2(TestU.java:70)* 	at com.thread.excutor.TestU.main(TestU.java:12)*/}private static void testAllowCoreThreadTimeOut_3() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.setKeepAliveTime(10, TimeUnit.SECONDS);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("2===" + executorService.getActiveCount());/*** 程序会自动退出* 1===0* 2===0** Process finished with exit code 0*/}private static void testAllowCoreThreadTimeOut_4() {ThreadPoolExecutor executorService = (ThreadPoolExecutor)Executors.newFixedThreadPool(5);executorService.setKeepAliveTime(10, TimeUnit.SECONDS);executorService.allowCoreThreadTimeOut(true);System.out.println("1===" + executorService.getActiveCount());IntStream.range(0, 5).boxed().forEach(item -> executorService.execute(() -> {try {TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}}));System.out.println("2===" + executorService.getActiveCount());executorService.execute(() -> {try {System.out.println("xxxxxx");TimeUnit.SECONDS.sleep(3);} catch (InterruptedException e) {e.printStackTrace();}});try {TimeUnit.SECONDS.sleep(5);} catch (InterruptedException e) {e.printStackTrace();}System.out.println("3===" + executorService.getActiveCount());/*** 1===0* 2===5* xxxxxx* 3===1** Process finished with exit code 0*/}
}

相关内容

热门资讯

绝版了!马斯克宣布停产特斯拉M... 快科技1月29日消息,在特斯拉2025年第四季度财报电话会议上,马斯克宣布,特斯拉将在2026年第二...
紫金、洛钼、江铜等超660亿海... 来源:界面新闻 2025年以来,紫金矿业(601899.SH)、洛阳钼业(603993.SH)...
原创 A... 在股市里,每一次新股上市都像是一场未知的冒险。而就在恒运昌登陆A股前夕,不少幸运中签的股民却陷入了“...
【评论】金矿企业顺周期扩张提速... 界面新闻记者 | 侯瑞宁 界面新闻编辑 | 刘春 黄金牛市下,两大矿业巨头近日在全球收购金矿资产...
水贝知名金店每日仅能提款500... 转自:贝壳财经 【#水贝知名金店每日仅能提款500元#,#杰我睿平台提出打折清偿方案#】近日,一场因...
原创 官... 文丨西部君 随着江苏2025年主要经济数据公布,全国31个省、自治区、直辖市(以下统称31省份)过去...
建设银行:唐朔正式就任副行长 北京商报讯(记者 孟凡霞 周义力)1月28日,建设银行发布公告,2025年12月23日,该行董事会审...
从万科退休20天后,郁亮疑似失... (文/孙梅欣 编辑/张广凯) 有市场消息称,万科前董事会主席、执行总裁郁亮近期疑似失联,时间已有半...
【看新股】燧原科技拟IPO:国... 转自:新华财经 新华财经北京1月29日电 近日,上海燧原科技股份有限公司(以下简称“燧原科技”或“公...
金价飙升下,银行火速上调积存金... 黄金价格在持续创造历史,银行在紧急出手控制风险。本周,国际金价连破四个关口,现货黄金在1月28日首次...
每天都喝!男子一查已是晚期!医... 68岁的刘大伯是小区里有名的“茶罐子”。清晨五点,他先烧一壶水,把昨晚泡过的铁观音再冲一遍,咕咚咕咚...
华大基因预计去年净利润同比大幅... 北京华大基因的展位在第三届中国国际供应链促进博览会上。 IC供图 1月27日晚间,华大基因发布202...
美联储如期按兵不动,美股波动不... 当地时间1月28日周三,美联储公布利率决议,美联储如期按兵不动。美股波动不大,美债和数字货币小幅波动...
原创 周... 说到娱乐圈中的明星,周深无疑是近年来一直保持高质量表现的代表之一。这几年,他在多个舞台上展现出不凡的...
美股收盘:存储股走强希捷劲升1... 财联社1月29日讯(编辑 赵昊)周三(1月28日),美股三大指数涨跌不一。 截至收盘,道琼斯指数涨0...
洛阳市孟津人民医院中西医结合解... 近日,洛阳市孟津人民医院康复医学科“中西医结合、针药并用”,仅用10天时间就为一位66岁的女患者缓解...
银行金条,“三周没到货了”,啥... “金条早就没货了,这几天朝阳区的工行网点都提不出金条,需要排队等。”27日,工商银行(下称工行)北京...
刚刚!美联储宣布:不降息!黄金... 【导读】美联储不降息,黄金、白银走高 中国基金报记者 泰勒 兄弟姐妹们啊,泰勒熬夜加班,一起关注一下...
天奇自动化工程股份有限公司20... 来源:上海证券报 证券代码:002009 证券简称:天奇股份 公告编号:2026-005 天奇自动...