gpt4 book ai didi

java - 采访 : How to ensure that a thread runs after another?

转载 作者:太空狗 更新时间:2023-10-29 22:37:00 24 4
gpt4 key购买 nike

有线程T1T2T3,如何保证线程T2T1 和线程 T3T2 之后运行?

这个问题是在我的面试中被问到的。我没有回答。请详细说明。

最佳答案

这将是最简单、最愚蠢的方法:

final Thread t1 = new Thread(new T1()); // assume T1 is a Runnable
t1.start();
t1.join();
final Thread t2 = new Thread(new T2());
t2.start();
t2.join();
final Thread t3 = new Thread(new T3());
t3.start();
t3.join();

关于java - 采访 : How to ensure that a thread runs after another?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11544843/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com