Hi,
I am currently working with threads and I've just read the Javadoc
of "Thread.interrupt()" and it's written:
[
If this thread is blocked in an invocation of the wait(), wait(long), or wait(long, int) methods of the Object class, or of the join(), join(long), join(long, int), sleep(long), or sleep(long, int), methods of this class, then its interrupt status will be cleared and it will receive an InterruptedException. I am not sure what "its interrupt status will be cleared" exactly means.
The only thing I know is that this method stops the thread considering
the thread's condition. But I don't know what interrupt status means..
Could somebody plz explain about interrupt status?
Thanks in advance.
Hyung Kim