码迷,mamicode.com
首页 > 其他好文 > 详细

测试Thread.isAlive

时间:2016-09-21 13:00:20      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

public class TestThread extends Thread {
    @Override
    public void run() {
        super.run();
        try {
            sleep(10000);
            System.out.println("线程停止");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

}
public class MainThread {

    public static void main(String[] args) throws InterruptedException {
        TestThread t = new TestThread();
        t.start();
        while (true) {
            System.out.println(t.isAlive());
            Thread.sleep(1000);
        }
    }
}

结果:

true
true
true
true
true
true
true
true
true
true
线程停止
false
false
false
false
false
false

 

能正确识别线程是否在运行

测试Thread.isAlive

标签:

原文地址:http://www.cnblogs.com/H-BolinBlog/p/5892043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!