最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Java实现监控多个线程状态的简单实例
时间:2022-06-29 01:33:11 编辑:袖梨 来源:一聚教程网
代码如下 | 复制代码 |
importjava.util.concurrent.CountDownLatch; importjava.util.concurrent.Executor; importjava.util.concurrent.Executors;
/** * 测试监控类 * * @author * */ publicclassWatchThread {
/** * 测试函数 * * @throws InterruptedException */ publicvoidtestThread()throwsInterruptedException { intthreadNum =10; // 初始化countDown CountDownLatch threadSignal =newCountDownLatch(threadNum); // 创建固定长度的线程池 Executor executor = Executors.newFixedThreadPool(threadNum); for(inti =0; i < threadNum; i++) {// 开threadNum个线程 Runnable task =newTestThread(threadSignal); // 执行 executor.execute(task); } threadSignal.await();// 等待所有子线程执行完 // do work System.out.println(Thread.currentThread().getName() +"+++++++结束."); }
/** * 测试函数 */ publicstaticvoidmain(String[] args)throwsInterruptedException { WatchThread test =newWatchThread(); test.testThread(); }
/** * * @author jill * */ privateclassTestThreadimplementsRunnable { privateCountDownLatch threadsSignal;
publicTestThread(CountDownLatch threadsSignal) { this.threadsSignal = threadsSignal; }
publicvoidrun() { System.out.println(Thread.currentThread().getName() +"开始..."); // do shomething System.out.println("开始了线程::::"+ threadsSignal.getCount()); // 线程结束时计数器减1 threadsSignal.countDown(); //这句代码 建议放在 finally里执行 System.out.println(Thread.currentThread().getName() +"结束. 还有" + threadsSignal.getCount() +" 个线程"); } }
} |
相关文章
- 王者荣耀S38赛季有什么更新 12-25
- 王者荣耀S38赛季有什么更新 王者荣耀S38赛季更新内容介绍 12-25
- 世界之外12.25有什么更新 世界之外12月25日更新内容介绍 12-25
- 光遇12.25红石碎片在哪里 光遇12月25日红石碎片位置攻略 12-25
- 奇迹暖暖绚光引途第二天怎么玩 绚光引途day2庆祝之舞搭配攻略 12-25
- 无限暖暖拍照打卡位置在哪里 无限暖暖世界巡游位置全攻略 12-25