當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。