java判断线程是否运行-LMLPHP

java中可以使用Thread.isAlive()判断线程是否运行,Thread.IsAlive属性 ,表示该线程当前是否为可用状态,如果线程已经启动,并且当前没有任何异常的话,则是true,否则为false。(推荐:java视频教程

/**
* Tests if this thread is alive. A thread is alive if it has
* been started and has not yet died.
* @return <code>true</code> if this thread is alive;
* <code>false</code> otherwise.
*/
Thread.isAlive()
登录后复制

更多java知识请关注java基础教程栏目。

以上就是java判断线程是否运行的详细内容,更多请关注Work网其它相关文章!

09-13 18:32