标签:rup 线程 设置 bool boolean 没有 ati interrupt stat
线程中断涉及到几个方法如下:
方法 | 注释 |
---|---|
public void interrupt(); |
设置线程的中断状态为 true(线程并没有停止) |
public static boolean interrupted(); |
返回线程的中断状态后清除(清除:将中断状态设为 false) |
public boolean isInterrupted(); |
返回线程的中断状态,不清除中断状态 |
标签:rup 线程 设置 bool boolean 没有 ati interrupt stat
原文地址:https://www.cnblogs.com/xmsx/p/9716584.html