Some explanation first:
The interrupted status of a thread is basically a boolean flag, which is set to "true" by interrupt().
The current state of this flag can be read using Thread.currentThread().isInterrupted().
If an interruptible operation (like Object.wait() or Thread.sleep()) finds the interrupted flag set
it will throw an InterruptedException and at the same time clear (set to "false") the flag, which could look like this:
if ( Thread.interrupted() ) { throw new InterruptedException(); }
Note and memorize that Thread.interrupted() implicitly clears the interrupted flag!
This means that, by the time your catch( InterruptedException ie) {...} is executed,
the thread itself does not know it was interrupted anymore.
That said, let's have a look at two examples:
First an example of a task which supports cancellation.
Here, we don't really care how far the task proceeds before being aborted:
public void run() {
int x = 0;
try {
while (x < 10) {
Thread.sleep(1000); // Some interruptible operation
x++;
}
System.out.println("x = " + x);
} catch (InterruptedException ie) {
System.out.println("Interrupted: x = " + x);
// We know we've been interrupted.
// Let the caller know it, too:
Thread.currentThread().interrupt();
}
}
This code tries to count x from 0 to 10. If it is not interrupted, it will complete and output "x = 10".
However, if the thread is interrupted in between, the InterruptedException will be thrown, aborting the ongoing task of incrementing x.
In this case the output may be anything from "Interrupted: x = 0" to "Interrupted: x = 9", depending on when the thread was interrupted.
Note that it is considered good practice to restore the interrupted flag of the thread before exiting since
otherwise the interrupted status will not be seen by the caller of this run() method.
Now, if it is crucial that our task executes in full, so that the output will always be "x = 10", which means the task does not support cancellation, we need another approach:
public void run() {
int x = 0;
boolean wasInterrupted = false; // <- This is the local variable to store the interruption status
while (x < 10) {
wasInterrupted = wasInterrupted || Thread.interrupted(); // not really needed in this case, but for the sake of completeness...
try {
Thread.sleep(1000); // <- Some interruptible operation
} catch (InterruptedException e) {
wasInterrupted = true;
}
x++;
}
System.out.println("x = " + x);
if ( wasInterrupted ) {
Thread.currentThread().interrupt();
}
}
In this case we continue processing even after an InterruptedException until the task is completed.
To keep being nice, if we detect an interruption, we store that condition in wasInterrupted so that we can
correctly set the interrupted flag before returning from the method.
That's what is meant by
should save the interruption status locally and restore it just before returning.
It says "should" because we are not strictly required to handle interruption this way - we may as well just ignore any InterruptedException
and just complete our task, then return. This is not the good practice mentioned above, though, and may cause trouble in some scenarios.