1.Thread.stop和suspend避免使用,容易造成死锁等不可意见的问题。
2.public class Thread {
public void interrupt();
public boolean isInterrupted();
public static boolean interrupted(); // 仅清除当前线程的中断状态,并返回之前的值。清除中断状态的唯一方法
}
3.调用interrupt并不意味着必然停止目标线程正在进行的工作,而是传递请求中断的消息。
4.处理InterruptedException:传递异常(使用throws声明),或者保持中断状态,上次调用栈的代码再处理。