![]() |
VOOZH | about |
In Java Threads, if any thread is in sleeping or waiting state (i.e. sleep() or wait() is invoked), calling the interrupt() method on the thread, breaks out the sleeping or waiting state throwing InterruptedException. If the thread is not in the sleeping or waiting state, calling the interrupt() method performs normal behavior and doesn't interrupt the thread but sets the interrupt flag to true.
interrupt() method: If any thread is in sleeping or waiting for a state then using the interrupt() method, we can interrupt the execution of that thread by showing InterruptedException. A thread that is in the sleeping or waiting state can be interrupted with the help of the interrupt() method of Thread class.
Example: Suppose there are two threads and If one of the threads is blocked in an invocation of the wait(), wait(long), or wait(long, int) methods of the Object class, or of the join(), join(long), join(long, int), sleep(long), or sleep(long, int), methods of this class, then its interrupt status will be cleared and it will receive an InterruptedException, which gives the chance to another thread to execute the corresponding run() method of another thread which results into high performance and reduces the waiting time of the threads.
Case 1: Interrupting a thread that doesn't stop working: In the program, we handle the InterruptedException using try and catch block, so whenever any thread interrupts the currently executing thread it will come out from the sleeping state but it will not stop working.
Main thread execution completes Child Thread executing InterruptedException occur
Case 2: Interrupting a thread that stops working: In the program, after interrupting the currently executing thread, we are throwing a new exception in the catch block so it will stop working.
Output
Exception in thread "Thread-0" java.lang.RuntimeException: Thread interrupted
at Geeks.run(File.java:13)
Case 3: Interrupting a thread that works normally: In the program, there is no exception occurred during the execution of the thread. Here, interrupt only sets the interrupted flag to true, which can be used by Java programmers later.
0 1 2 3 4