摘要:
总结: Thread类中的static boolean interrupted()修改中断状态为false ,boolean isInterrupted()只判断中断状态,但不修改 public void interrupt() 将调用者线程的中断状态设置为true; public boolean 阅读全文
2019年11月2日 #
摘要:
1 package sun.nio.ch; 2 3 public abstract interface Interruptible 4 { 5 public abstract void interrupt(Thread paramThread); 6 } 1 /** 中断此线程。 2 * Inter 阅读全文