摘要:
停止一个线程通常意味着在线程处理任务完成之前停掉正在做的操作,也就是放弃当前的操作。 在 Java 中有以下 3 种方法可以终止正在运行的线程: 使用退出标志,使线程正常退出,也就是当 run() 方法完成后线程中止。 使用 stop() 方法强行终止线程,但是不推荐使用这个方法,该方法已被弃用。 阅读全文
摘要:
public class InterruptThread2 extends Thread{ public static void main(String[] args) { try { InterruptThread2 t = new InterruptThread2(); t.start(); T 阅读全文