>Java >java지도 시간 >java isInterrupted()는 스레드를 어떻게 결정합니까?

java isInterrupted()는 스레드를 어떻게 결정합니까?

王林
王林앞으로
2023-06-03 10:43:301065검색

설명

1. isInterrupted()는 현재 스레드가 중단되었는지 여부를 확인할 수 있으며 단지 Interrupt() 로고에 대한 판단일 뿐이며 로고 변경에는 영향을 미치지 않습니다. 인터럽트 플래그라고 불리는 내부 A 플래그).

예제

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란 무엇입니까

Java는 데스크톱 애플리케이션, 웹 애플리케이션, 분산 시스템 및 임베디드 시스템 애플리케이션을 작성할 수 있는 객체 지향 프로그래밍 언어입니다.

위 내용은 java isInterrupted()는 스레드를 어떻게 결정합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 yisu.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제