gpt4 book ai didi

java - 关于按顺序连接线程

转载 作者:行者123 更新时间:2023-12-02 07:16:00 25 4
gpt4 key购买 nike

我是线程世界的新手,仍在学习,因为我正在了解线程的概念并加入其他线程等待较早线程完成并从那一端加入它,你能给我建议吗我想启动三个线程 T1,T2,T3,其中 t2 将在 T1 完成后启动。

最佳答案

据我了解,您希望等到线程 1 完全完成后再启动线程 2,而线程 3 可以在任何地方运行。我认为可以满足您的问题的简单代码:

Thread thread1 = new Thread1();
Thread thread2 = new Thread2();
Thread thread3 = new Thread3();
thread3.start();
thread1.start();
try {
thread1.join();
thread2.start();
} catch (InterruptedException e) {
//if you do not use thread1.interrupt() this will not happen.
}

关于java - 关于按顺序连接线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14941484/

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