确定线程何时结束
来源:dev.to
时间:2024-11-25 14:37:10 172浏览 收藏
学习文章要努力,但是不要急!今天的这篇文章《确定线程何时结束》将会介绍到等等知识点,如果你想深入学习文章,可以关注我!我会持续更新相关文章的,希望对大家都能有所帮助!
1。检查线程是否完成的方法:
isalive()
- 如果线程仍在运行则返回true;否则,返回 false。
- 用于持续检查线程的状态。
加入()
- 使调用该方法的线程等待,直到指定线程完成。
- 有多种变体允许您定义最长等待时间。
2。使用 isalive() 的示例:
// verifica se as threads estão vivas class mythread implements runnable { thread thrd; mythread(string name) { thrd = new thread(this, name); thrd.start(); // inicia a thread } public void run() { system.out.println(thrd.getname() + " starting."); try { for (int count = 0; count < 10; count++) { thread.sleep(400); // suspende a execução por 400ms system.out.println("in " + thrd.getname() + ", count is " + count); } } catch (interruptedexception exc) { system.out.println(thrd.getname() + " interrupted."); } system.out.println(thrd.getname() + " terminating."); } } class morethreads { public static void main(string[] args) { system.out.println("main thread starting."); mythread mt1 = new mythread("child #1"); mythread mt2 = new mythread("child #2"); mythread mt3 = new mythread("child #3"); // verifica se as threads ainda estão vivas do { system.out.print("."); try { thread.sleep(100); } catch (interruptedexception exc) { system.out.println("main thread interrupted."); } } while (mt1.thrd.isalive() || mt2.thrd.isalive() || mt3.thrd.isalive()); system.out.println("main thread ending."); } }
重要要点:
- 主线程不断检查 isalive() 直到所有子线程都完成。
- 线程的执行是由 java 调度的,因此确切的输出可能会有所不同。
3。使用 join() 的示例:
// aguarda o término das threads com join() class mythread implements runnable { thread thrd; mythread(string name) { thrd = new thread(this, name); thrd.start(); // inicia a thread } public void run() { system.out.println(thrd.getname() + " starting."); try { for (int count = 0; count < 10; count++) { thread.sleep(400); // suspende a execução por 400ms system.out.println("in " + thrd.getname() + ", count is " + count); } } catch (interruptedexception exc) { system.out.println(thrd.getname() + " interrupted."); } system.out.println(thrd.getname() + " terminating."); } } class jointhreads { public static void main(string[] args) { system.out.println("main thread starting."); mythread mt1 = new mythread("child #1"); mythread mt2 = new mythread("child #2"); mythread mt3 = new mythread("child #3"); try { mt1.thrd.join(); // aguarda child #1 terminar system.out.println("child #1 joined."); mt2.thrd.join(); // aguarda child #2 terminar system.out.println("child #2 joined."); mt3.thrd.join(); // aguarda child #3 terminar system.out.println("child #3 joined."); } catch (interruptedexception exc) { system.out.println("main thread interrupted."); } system.out.println("main thread ending."); } }
预期输出(可能会有所不同):
Main thread starting. Child #1 starting. Child #2 starting. Child #3 starting. In Child #1, count is 0 In Child #2, count is 0 In Child #3, count is 0 ... Child #1 terminating. Child #1 joined. Child #2 terminating. Child #2 joined. Child #3 terminating. Child #3 joined. Main thread ending.
重要要点:
- join() 确保主线程仅在子线程完成后继续。
- 输出显示每个线程按预期顺序终止。
以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于文章的相关知识,也可关注golang学习网公众号。
声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
386 收藏
-
191 收藏
-
399 收藏
-
276 收藏
-
227 收藏
-
207 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习