Thread.interrupt()在某个线程上调用an 时,该线程会发生什么?
Thread.interrupt()
目标线程是“中断的”。通常,在该线程中设置一个标志,该线程可以查看该标志(带有Thread.interrupted())。如果目标线程当前在某些I / O上被阻塞Object.wait(),则分别使用an InterruptedIOException或an 唤醒它InterruptedException。
Thread.interrupted()
Object.wait()
InterruptedIOException
InterruptedException
线程中断是微调线程的一种温和方法。它是用来给线程有机会退出 干净 ,而不是Thread.stop(),这更像是一支突击步枪射击的线程。
Thread.stop()