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

Q

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

✍: Guest

A

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.

2012-12-20, 2279👍, 0💬