If I have a function with a try/finally section, and the thread running it is interrupted while in the try block, will the finally block execute before the interruption actually occurs?
|
|
According to the Java Tutorials, "if the thread executing the Here's the full passage:
...
It prints - finally executed |
|||||||||
|
|
The effect of interruption is to throw an |
|||
|
|
|
A Thread Interrupt in Java is just setting a flag. It doesn't cause anything special to happen to currently executing code, or affect the flow of control. If your thread is engaged in, or attempts to enter, an operation that throws InterruptedException, then the exception is thrown from the point where that method is invoked and if it's inside a try block, the finally will execute before the exception leaves just like normal. |
|||
|
|
|
It will execute the same way as with any other exception from the try block, not before the interruption. |
|||
|
|
