溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

基于JDK8總結(jié)java中的interrupt

發(fā)布時(shí)間:2020-09-08 05:07:42 來(lái)源:腳本之家 閱讀:165 作者:Blog of Kami Wan 欄目:編程語(yǔ)言

1. interrupt知識(shí)點(diǎn)

 以下總結(jié)基于JDK8

本文不會(huì)完整說(shuō)明interrupt,只會(huì)羅列一些比較重要的點(diǎn)。完整了解Thread.interrupt可以看參考資料。

以下的一些理解新的有助于理解參考資料的文章:

interrupt方法調(diào)用后,針對(duì)BLOCKED狀態(tài)的線程,只是設(shè)定中斷標(biāo)志位為true。是否響應(yīng)中斷(感知這個(gè)標(biāo)志位的變化)取決于API的設(shè)計(jì)。JDK的阻塞IO API、Synchronized同步塊、還有Lock中的很多方法(不包括lockInterruptibly)都是不響應(yīng)中斷的。當(dāng)然調(diào)用線程可以利用標(biāo)志位判斷來(lái)使得自己設(shè)計(jì)的API是可響應(yīng)中斷的。

interrupt方法調(diào)用后,針對(duì)WAITING/TIMED_WAITING狀態(tài)的線程,會(huì)上拋interruptedException**并且設(shè)置中斷標(biāo)志位false**。例如線程調(diào)用Thread.sleep,Object.wait()之后。

如果線程尚未啟動(dòng)(NEW),或者已經(jīng)結(jié)束(TERMINATED),則調(diào)用interrupt()對(duì)它沒(méi)有任何效果,中斷標(biāo)志位也不會(huì)被設(shè)置。

最佳實(shí)踐:有時(shí)候一些方法設(shè)計(jì)上不允許被中斷或者取消,但是當(dāng)別的線程發(fā)來(lái)中斷請(qǐng)求的時(shí)候,也需要進(jìn)行標(biāo)記的保留,方便其他調(diào)用方“了解情況”

public Task getNextTask(BlockingQueue<Task> queue) {
 boolean interrupted = false;
 try {
  while (true) {
   try {
    return queue.take();
   } catch (InterruptedException e) {
    //fianlly中依賴的狀態(tài)標(biāo)記
    interrupted = true;
    // fall through and retry
   }
  }
 } finally {
  if (interrupted)
  //在fianlly中重新標(biāo)記,確保沒(méi)有丟失中斷通知
   Thread.currentThread().interrupt();
 }
}

利用中斷可以實(shí)現(xiàn)一些cancel的操作。例如:

package concurrent;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
 * Created by wanshao
 * Date: 2017/12/18
 * Time: 下午3:42
 **/
public class InterruptExample {
 public static void main(String[] args) throws InterruptedException {
  InterruptTask interruptTask = new InterruptTask();
  ExecutorService executorService = Executors.newSingleThreadExecutor();
  executorService.submit(interruptTask);
  Thread.sleep(100);
  interruptTask.cancel();
  executorService.shutdown();
 }
}
/**
 * 一個(gè)響應(yīng)中斷的任務(wù)
 */
class InterruptTask implements Callable<Integer> {
 private BlockingQueue<Task> queue;
 //保存要被interrupt的線程
 Thread t;
 @Override
 public Integer call() throws InterruptedException {
  System.out.println("start a blocked task");
  try {
   t = Thread.currentThread();
   Thread.currentThread().sleep(50000);
  } catch (InterruptedException e) {
   System.out.println("be interrupted");
   e.printStackTrace();
  }
  return 0;
 }
 public void cancel() {
  System.out.println("cacel a task....");
  //這里直接調(diào)用Thread.currentThread()會(huì)獲取到main線程,而不是線程池里面的線程
  if (!t.isInterrupted()) {
   t.interrupt();
  }
 }
}

總結(jié)

以上所述是小編給大家介紹的基于JDK8總結(jié)java中的interrupt,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI