Explanation
1. isInterrupted() can determine whether the current thread is interrupted. It is only a judgment on the interrupt() logo and will not affect any changes in the logo. 2. When interrupt() is called, an internal flag called interrupt flag is set).
Example
public static void main(String[] args) throws InterruptedException{ Thread thread = new Thread(()->{ while (true){} }); thread.start(); TimeUnit.SECONDS.sleep(1); System.out.println("Thread is interrupted :"+thread.isInterrupted()); thread.interrupt(); System.out.println("Thread is interrupted :"+thread.isInterrupted()); }
Java is an object-oriented programming language that can write desktop applications, Web applications, distributed systems and embedded system applications.
The above is the detailed content of How does java isInterrupted() determine threads?. For more information, please follow other related articles on the PHP Chinese website!