线程-中断
- 中断(interrupt)只是线程的一种状态,它不会抛出中断异常(throw InterruptedException),但是在
Object.wait
、Thread.Sleep
、join
等方法会监控线程的中断状态,如果中断状态是true
则抛出中断异常。 - 中断不会让线程结束,它只是让处于阻塞的线程,跳出当前状态,向下流转。当然在
Thread
的设计者最初目的是通过中断结束当前线程,可是实际业务中,一般不会直接让线程直接结束,而是通过异常捕获机制,捕获之后做出相关的业务处理。 - 在使用中断方法时,一定要注意
Thread
类中的public static boolean interrupted() { return currentThread().isInterrupted(true); } public boolean isInterrupted() { return isInterrupted(false); } private native boolean isInterrupted(boolean ClearInterrupted);
其中static boolean interrupted()
是清除中断状态,也就是执行后,interrupt=false。
而boolean isInterrupted()
的意思是,设置interrupt=true。两者完全相反的含义。