真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)專注于寧陜企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城開(kāi)發(fā)。寧陜網(wǎng)站建設(shè)公司,為寧陜等地區(qū)提供建站服務(wù)。全流程按需定制設(shè)計(jì),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

 以下總結(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 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 {
 private BlockingQueue 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ì)創(chuàng)新互聯(lián)網(wǎng)站的支持!


文章名稱:基于JDK8總結(jié)java中的interrupt
URL標(biāo)題:http://weahome.cn/article/ieisgc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部