Home  >  Article  >  Java  >  How does java isInterrupted() determine threads?

How does java isInterrupted() determine threads?

王林
王林forward
2023-06-03 10:43:30994browse

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());
}

What is Java

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!

Statement:
This article is reproduced at:yisu.com. If there is any infringement, please contact admin@php.cn delete