1.interrupt
2.interrupted
3.isInterrupted
4.InterruptedException
需要在catch InterruptedException中 执行 Thread.currentThread().interrupt(); 来恢复中断状态
5.无法被中断的处理方式介绍
这篇介绍能被中断和无法被中断的处理方式介绍,可以看看无法被中断的场景以及参考的资料,同时感觉这位同学的这句话蛮好,“InterruptedException 是最常见的中断表现形式。所以如何处理 InterruptedException 便成为 Java 中断知识中的必修课。”