Java多线程--主线程等待所有子线程执行完毕

本文深入探讨了Java中两种主线程等待子线程完成的方法:使用Thread的join()方法和java.util.concurrent中的CountDownLatch。通过实例演示了如何在不同场景下灵活运用这些工具,特别关注于解决多线程环境下数据动态变化导致主线程阻塞的问题,并提供了实际应用场景及解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

参考: http://blog.youkuaiyun.com/nms312/article/details/30115055

本文介绍两种主线程等待子线程的实现方式:

1、使用Thread的join()方法,join()方法会阻塞主线程继续向下执行。

2、使用java.util.concurrent中的CountDownLatch,是一个倒数计数器。初始化时先设置一个倒数计数初始值,每调用一次countDown()方法,倒数值减一,他的await()方法会阻塞当前进程,直到倒数至0。

public class Threads {
	 public  static  void  main (String[]  args ) {
	        SubThread thread  =  new  SubThread () ;
	        thread.start () ;
	        //主线程处理其他工作,让子线程异步去执行.
	         mainThreadOtherWork () ;
	         System.out.println ( "now waiting sub thread done." ) ;
	        //主线程其他工作完毕,等待子线程的结束, 调用join系列的方法即可(可以设置超时时间)
	         try  {
	            thread.join () ;
	        }  catch  ( InterruptedException e) {
	            e.printStackTrace () ;
	        }
	        System.out.println ("now all done.") ;
	}

private  static  void  mainThreadOtherWork () {
         System.out.println ("main thread work start") ;
          try  {
              Thread.sleep ( 3000L ) ;
         }  catch  ( InterruptedException e) {
             e.printStackTrace () ;
         }
          System.out.println ("main thread work done.") ;
    }
}

package classstudy;

public class  SubThread  extends  Thread{
    @Override
    public  void  run () {
        working () ;
   }

    private  void  working () {
        System.out.println ("sub thread start working." ) ;
        busy () ;
        System.out.println ("sub thread stop working." ) ;
   }

    private  void  busy () {
        try  {
             sleep ( 5000L ) ;
       }  catch  ( InterruptedException e) {
            e.printStackTrace () ;
       }
   }
   
}
运行结果:

main thread work start
sub thread start working.
main thread work done.
now waiting sub thread done.
sub thread stop working.
now all done.

package classstudy;

import java.util.concurrent.CountDownLatch;  

public class Thread1 extends Thread  
{  
  
    private CountDownLatch count;  
  
    public Thread1(CountDownLatch count,String name)  
    {  
        this.count = count;  
        this.setName(name);  
    }  
  
    @Override  
    public void run()  
    {  
        System.out.println(this.getName() + " staring...");  
  
        System.out.println(this.getName() + " end...");  
        this.count.countDown();  
    }  
  
    /** 
     * @param args 
     */  
    public static void main(String[] args)  
    {  
        System.out.println("main thread starting...");  
  
        CountDownLatch count = new CountDownLatch(5);  
  
        for (int i = 1; i <= 5; i++)  
        {  
        	Thread1 my = new Thread1(count, "Thread " + i);  
            my.start();  
        }  
  
        try  
        {  
            count.await();  
        }  
        catch (InterruptedException e)  
        {  
            e.printStackTrace();  
        }  
  
        System.out.println("main thread end...");  
  
    }  
  
}  
运行结果:

main thread starting...
Thread 1 staring...
Thread 1 end...
Thread 3 staring...
Thread 3 end...
Thread 2 staring...
Thread 2 end...
Thread 4 staring...
Thread 4 end...
Thread 5 staring...
Thread 5 end...
main thread end...

实际应用场景,Map<String> myDynamicData, 这个动态变化的数据消失发送邮件。这样会存在一个问题,主线程等待子线程执行完毕,如果子线程耗费时间很长,将阻碍主线程继续向下执行,直观现象就是一直卡在那儿。

解决办法:启一个线程去监控myDynamicData里面的数据。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值