Я немного запутался в поведении thread.isInterrupted
в приведенной ниже программе.
public class ThreadPractice {
public static void main(String args[]) throws InterruptedException {
Thread t = new Thread(new Runnable() {
@Override
public void run() {
try {
System.out.println("Starting thread..." + Thread.currentThread().getName());
Thread.sleep(10000);
System.out.println("Waking up");
}catch(InterruptedException e){
System.out.println("Thread is interrupted!!!");
Thread.currentThread().interrupt();
}
}
});
t.start();
Thread.sleep(2000);
t.interrupt();
//System.out.println(!t.isInterrupted());
while(!t.isInterrupted()){
System.out.println("Current thread not interrupted!!!");
}
}
}
При выполнении вышеуказанной программы как таковой она печатает,
Starting thread...Thread-0
Thread is interrupted!!!
Но когда я раскомментирую оператор System.out
для печати состояния прерывания, он запускается в бесконечную печать цикла "Текущий поток не прерывается"
Я не могу точно определить, что делает различие System.out
.