Java如何检查线程是否停止?

在Java编程中,如何检查线程是否停止?

以下示例演示如何通过使用isAlive()方法来检查线程是否已停止。

// from W w w .Y I I b  AI.c  o  M
package com.yiibai; public class ThreadCompletion { public static void main(String[] argv) throws Exception { MyThread thread = new MyThread(); thread.start(); if (thread.isAlive()) { System.out.println("Thread has not finished"); } else { System.out.println("Finished"); } long delayMillis = 5000; thread.join(delayMillis); if (thread.isAlive()) { System.out.println("thread has not finished"); } else { System.out.println("Finished"); } thread.join(); } } class MyThread extends Thread { boolean stop = false; public void run() { int i = 0; while (stop) { return ; } } } 
Java

上述代码示例将产生以下结果 -

Thread has not finished
Finished

转载于:https://www.cnblogs.com/borter/p/9613425.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值