当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Thread.isAlive()用法及代码示例



描述

这个java.lang.Thread.isAlive() 方法测试此线程是否处于活动状态。如果线程已启动且尚未死亡,则该线程处于活动状态。

声明

以下是声明java.lang.Thread.isAlive()方法

public final boolean isAlive()

参数

NA

返回值

如果此线程处于活动状态,则此方法返回 true,否则返回 false。

异常

NA

示例

下面的例子展示了 java.lang.Thread.isAlive() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class ThreadDemo implements Runnable {

   public void run() {
   
      Thread t = Thread.currentThread();
      // tests if this thread is alive
      System.out.println("status = " + t.isAlive());
   }

   public static void main(String args[]) throws Exception {

      Thread t = new Thread(new ThreadDemo());
   
      // this will call run() function
      t.start();
   
      // waits for this thread to die
      t.join();
   
      // tests if this thread is alive
      System.out.println("status = " + t.isAlive());
   }
}

让我们编译并运行上面的程序,这将产生以下结果——

status = true
status = false

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Thread.isAlive() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。