Java并发编程的基础-Thread.interrupted
生活随笔
收集整理的這篇文章主要介紹了
Java并发编程的基础-Thread.interrupted
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
通過interrupt,設置了一個標識告訴線程可以終止了,線程中還提供了靜態方法Thread.interrupted()對設置中斷標識的線程復位。比如在上面的案例中,外面的線程調用thread.interrupt來設置中斷標識,而在線程里面,又通過Thread.interrupted把線程的標識又進行了復位
public class InterruptDemo { private static int i; public static void main(String[] args) throws InterruptedException { Thread thread=new Thread(()->{ while(true){ if(Thread.currentThread().isInterrupted()){ System.out.println("before:"+Thread.currentThread().isInterrupted()); Thread.interrupted(); //對線程進行復位,由true變成false System.out.println("after:"+Thread.currentThread().isInterrupted()); } } },"interruptDemo"); thread.start(); TimeUnit.SECONDS.sleep(1); thread.interrupt(); } }?
總結
以上是生活随笔為你收集整理的Java并发编程的基础-Thread.interrupted的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java并发编程的基础-interrup
- 下一篇: Java并发编程的基础-其他的线程复位