三个线程按顺序执行-join实现

2021/11/22 23:39:55

本文主要是介绍三个线程按顺序执行-join实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

package com.example.demo.multithread;

class T1 extends Thread {
	public Thread t;

	public T1(Thread t) {
		this.t = t;
	}

	public void run() {
		try {
			if (t != null) {
				t.join();
			}
			System.out.println("a");
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

class T2 extends Thread {
	public Thread t;

	public T2(Thread t) {
		this.t = t;
	}

	public void run() {
		try {
			if (t != null) {
				t.join();
			}
			System.out.println("b");
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

class T3 extends Thread {
	public Thread t;

	public T3(Thread t) {
		this.t = t;
	}

	public void run() {
		try {
			if (t != null) {
				t.join();
			}
			System.out.println("c");
		} catch (InterruptedException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
}

public class T {

	public static void main(String[] args) throws InterruptedException {

		Thread t1 = new T1(null);
		Thread t2 = new T2(t1);
		Thread t3 = new T3(t2);		
		
		t2.start();
		t1.start();	
		t3.start();

	}

}



这篇关于三个线程按顺序执行-join实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程