最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Java实现等待所有子线程结束后再执行一段代码的方法
时间:2022-06-29 01:22:44 编辑:袖梨 来源:一聚教程网
今天有一个需求是:在一个方法中开启了一个子线程来执行操作,返回值依赖于子线程的执行结果,这样如果要返回正确的值,就需要开启子线程后
主线程等待子线程,然后子线程执行结束后,主线程再继续执行。
主线程等待子线程需要用到:CountDownLatch
代码如下:
importjava.util.concurrent.CountDownLatch; publicclassCounter { publicstaticintcount =0; staticCountDownLatch cdl=newCountDownLatch(1000);//这里的数字,开启几个线程就写几 publicsynchronizedstaticvoidinc()throwsInterruptedException{//注意,如果不加上synchronized,由于并发写入,结果会小于1000 Thread.sleep(1); count++; cdl.countDown(); } publicstaticvoidmain(String[] args)throwsInterruptedException{ for(inti =0; i <1000; i++){ newThread(newRunnable(){ publicvoidrun() { // TODO Auto-generated method stub try{ Counter.inc(); }catch(InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } ).start(); } cdl.await();//主线程等待子线程执行输出 System.out.println(count); } }
相关文章
- 时空中的绘旅人罗夏妄语怎么样 11-25
- 重返未来1999J什么时候up 11-25
- 无期迷途哈梅尔依偎涟漪怎么样 四星装束哈梅尔依偎涟漪介绍 11-25
- 剑与远征折翼苍空攻略 剑与远征奇境探险折翼苍空怎么过 11-25
- 以闪亮之名主线第二十九章怎么玩 主线29章洞神娶亲迎亲活动介绍 11-25
- 时空中的绘旅人叶瑄逆钟怎么样 绘旅人叶瑄逆钟画灵介绍 11-25