Wednesday, February 11, 2009

What happens when you invoke a thread's interrupt method while it is sleeping or waiting

Question :What happens when you invoke a thread's interrupt method while it is sleeping or waiting?
Answer :When a task's interrupt() method is executed, the task enters the ready state. The next time the task enters the running state, an InterruptedException is thrown.

No comments: