当前位置:   article > 正文

java中Thread.join()方法

thread.join

1. Thread.join()方法是什么
Thread.join()方法是Thread类中的一个方法,该方法的定义是等待该线程终止。其实就是join()方法将挂起调用线程的执行, 直到被调用的线程完成它的执行。
举例说明:在主线程中调用t1.join()方法,主线程将等待t1线程终止。join()方法挂起主线程的执行,直到t1执行完毕后主线程才接着执行。
2. Thread.join如何使用
现在有T1、T2两个线程,你怎样保证T2在T1执行完后执行?

public class ThreadJoin {

    public static void main(String[] args){
        Thread t1 = new Thread(new Runnable() {
            @Override
            public void run() {
                try{
                    System.out.println("thread t1 is running");
                    Thread.sleep(5000);
                    System.out.println("thread t1 is over");
                }catch(Exception e){
                    e.printStackTrace();
                }
            }
        });
        t1.start();
        Thread t2 = new Thread(new Runnable() {
            @Override
            public void run() {
                try{
                    //t1.join();
                    System.out.println("thread t2 is running");
                    Thread.sleep(5000);
                    System.out.println("thread t2 is over");
                }catch(Exception e){
                    e.printStackTrace();
                }
            }
        });
        t2.start();
    }
    }

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

运行结果如下:

thread t2 is running
thread t1 is running
thread t1 is over
thread t2 is over
  • 1
  • 2
  • 3
  • 4

可以看出t2并没有等待t1执行结束后才执行,两者是并发执行的。

使用Thread.join()方法,在线程t2中执行t1.join()方法,此时调用线程是t2,被调用线程是t1,t2将等待t1执行结束后才执行。
运行结果如下:

thread t1 is running
thread t1 is over
thread t2 is running
thread t2 is over
  • 1
  • 2
  • 3
  • 4

此时t1、t2是顺序执行的。

文章转载自: https://blog.csdn.net/a158123/article/details/78633772

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/197794
推荐阅读
相关标签
  

闽ICP备14008679号