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


Java Java.lang.Thread.isInterrupted()用法及代碼示例



描述

這個java.lang.Thread.isInterrupted() 方法測試此線程是否已被中斷。線程的中斷狀態不受此方法的影響。

由於線程在中斷時未處於活動狀態而被忽略的線程中斷將通過此方法返回 false 來反映。

聲明

以下是聲明java.lang.Thread.isInterrupted()方法

public boolean isInterrupted()

參數

NA

返回值

如果此線程已被中斷,則此方法返回 true;否則為假。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class ThreadDemo implements Runnable {

   Thread t;

   ThreadDemo() {

      t = new Thread(this);
      System.out.println("Executing " + t.getName());
      // this will call run() fucntion
      t.start();
        
      // tests whether this thread has been interrupted
      if (!t.isInterrupted()) {
         t.interrupt();
      }
      // block until other threads finish
      try {  
         t.join();
      } catch(InterruptedException e) {}
   }

   public void run() {
      try {       
         while (true) {
            Thread.sleep(1000);
         }
      } catch (InterruptedException e) {
         System.out.print(t.getName() + " interrupted:");
         System.out.println(e.toString());
      }
   }

   public static void main(String args[]) {
      new ThreadDemo();
      new ThreadDemo();
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Executing Thread-0
Thread-0 interrupted:java.lang.InterruptedException:sleep interrupted
Executing Thread-1
Thread-1 interrupted:java.lang.InterruptedException:sleep interrupted

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Thread.isInterrupted() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。