What happens when you invoke a thread’s interrupt method while it is sleeping or waiting?
By on May 31, 2007 in JAVA Interview Questions
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.


