如何优雅的中断线程

在Java中,让一个线程停止工作有以下几种方式

  1. 线程自然执行完毕。
  2. 线程执行过程中出现异常并未被处理。
  3. 调用stop,resume,suspend方法,这些方法都属于过时的方法,方法调用时不会释放所持有的锁,容易出现死锁现象。
  4. 使用interrupt中断线程。

在Thread类中,有如下三个方法
image.png
interrupt(): 用于线程中断,该方法并不能直接中断线程,只会将线程的中断标志位改为true。它只会给线程发送一个中断状态,线程是否中断取决于线程内部对该中断信号做什么响应,若不处理该中断信号,线程就不会中断。
interrupted(): 判断线程是否处于中断状态,该方法调用后会将线程的中断标志位重置为false。
isInterrupted(): 判断线程是否处于中断状态。

如何安全的停止线程?

public class ThreadTest implements Runnable{

    @Override
    public void run() {
        // 在线程体中对线程的中断标志位进行判断,若线程中断,则不再执行
        while (!Thread.currentThread().isInterrupted()){
            System.out.println("Thread is running");

            try {
                System.out.println(Thread.currentThread().getName() + " " + Thread.currentThread().isInterrupted());
                Thread.sleep(100);

            }
            /**
             * 需要注意的是,当方法体中的代码抛出InterruptedException异常时,线程的中断标志位会复位成          
             * false,若不处理,外部中断线程时,内部也无法停止,所以在catch代码中手动处理,将线程中断
             */
            catch (InterruptedException e) {
                System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().isInterrupted());
                // 发生InterruptedException异常时,在catch中处理,中断线程
                Thread.currentThread().interrupt();
                e.printStackTrace();
            }
            System.out.println(Thread.currentThread().getName() + ":" + Thread.currentThread().isInterrupted());
        }
    }
}

你可能感兴趣的:(java)