现在有三个线程T1,T2,T3,怎么保证线程按照T1,T2,T3的顺序顺序执行。

 解决思路是:使用join();来保证上一个线程执行完后,再执行现在的线程执行。

thread.Join把指定的线程加入到当前线程,可以将两个交替执行的线程合并为顺序执行的线程。

比如在线程B中调用了线程A的Join()方法,直到线程A执行完毕后,才会继续执行线程B。

t.join();      //调用join方法,等待线程t执行完毕
t.join(1000);  //等待 t 线程,等待时间是1000毫秒。

package com.zte.power.refuelsitemanagement.service;

public class OrderT1T2T3 {
	public static void main(String[] args) {
		Thread t1 = new Thread(new Runnable() {

			@Override
			public void run() {
				try {
					Thread.sleep(5000);
					System.out.println(Thread.currentThread().getName()+"-111");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
		});

		Thread t2 = new Thread(new Runnable() {

			@Override
			public void run() {
				try {
					System.out.println("我正在等待T1执行完成");
					t1.join();
					Thread.sleep(3000);
					System.out.println(Thread.currentThread().getName()+"-222");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
		});

		Thread t3 = new Thread(new Runnable() {

			@Override
			public void run() {
				try {
					System.out.println("我正在等待T2执行完成");
					t2.join();
					Thread.sleep(1000);
					System.out.println(Thread.currentThread().getName()+"-333");
				} catch (InterruptedException e) {
					e.printStackTrace();
				}
			}
		});
	 
		 t1.start();
		 t2.start();
		 t3.start();
		
	}
}

 

在Java中,为了实现这样的线程同步,可以使用`synchronized`, `wait()`, 和 `notifyAll()` 等并发工具。我们可以创建一个包含共享资源的对象,并利用 `volatile` 关键字防止数据竞争。下面是一个简单的例子: ```java public class ThreadTask { private volatile int result; private final Object lock = new Object(); public void startThreads(int t2Result, int t3Result) { Thread t1 = new Thread(() -> { synchronized (lock) { try { result = Math.max(t2Result, t3Result); System.out.println("T1 got results, result is " + result); // Notify T2 and T3 that result is available lock.notifyAll(); } catch (InterruptedException e) { e.printStackTrace(); } } }); Thread t2 = new Thread(() -> { while (!Thread.currentThread().equals(t1)) { try { lock.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } // Simulate a task with random delay for result try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } result = t2Result; // Set your own result }); Thread t3 = new Thread(() -> { while (!Thread.currentThread().equals(t1)) { try { lock.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } // Similar to T2, simulate a task try { Thread.sleep(500); } catch (InterruptedException e) { e.printStackTrace(); } result = t3Result; }); t1.start(); t2.start(); t3.start(); // Wait for all threads to finish try { t1.join(); t2.join(); t3.join(); } catch (InterruptedException e) { e.printStackTrace(); } } public static void main(String[] args) { ThreadTask task = new ThreadTask(); task.startThreads(10, 20); // Replace with actual values or generate them dynamically } } ``` 在这个例子中,`startThreads`方法启动了三个线程`t1`, `t2`, 和 `t3`。`t1`负责获取并存储结果,然后唤醒等待的`t2`和`t3`。`t2`和`t3`分别模拟延迟任务并在得到通知后设置自己的结果。主线程会等待所有线程完成。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值