Java线程中的join使用实例

Posted 专注、坚持---只做最简单的自己

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java线程中的join使用实例相关的知识,希望对你有一定的参考价值。

JDK中解释为 Waits for this thread to die. 等待本线程结束后,下一个线程才可以运行。

实例要求:

现在有T1、T2、T3三个线程,你怎样保证T2在T1执行完后执行,T3在T2执行完后执行

实现代码:

package com.st.lesson02;

public class Test01 {
    //1.现在有T1、T2、T3三个线程,你怎样保证T2在T1执行完后执行,T3在T2执行完后执行
    public static void main(String[] args) throws InterruptedException {
        Thread th1 = new Thread01();
        Thread th2 = new Thread02();
        Thread th3 = new Thread03();
        th1.start();
        th1.join();
        System.out.println("Thread01运行结束。。。");
        th2.start();
        th2.join();
        System.out.println("Thread02运行结束。。。");
        th3.start();
        th3.join();
        System.out.println("Thread03运行结束。。。");
        System.out.println("------主函数-------");
    }
}
class Thread01 extends Thread{
    
    public void run() {
        System.out.println("Thread01...running...");
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}
class Thread02 extends Thread{
    public void run() {
        System.out.println("Thread02...running...");
        try {
            Thread.sleep(500);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
    }
}
class Thread03 extends Thread{
    public void run() {
        System.out.println("Thread03...running...");
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
    }
}

运行效果图:

 

以上是关于Java线程中的join使用实例的主要内容,如果未能解决你的问题,请参考以下文章

Java多线程-join的使用

java join 方法的使用

Java多线程学习:Join()

Java Thread.join()详解--父线程等待子线程结束后再结束

Java多线程中的join方法

Java中join的使用