中断线程

在 run() 方法中,如果语句执行到了最会一句,或是遇到 return 方法,或是方法中出现了没有被捕获的异常,run() 方法将会执行结束。

在 java 中,Thread 中的 interrupt() 方法被调用时,线程中断状态将被置位,由于线程在运行期间,会不断的检测这个状态位,以判断程序是否被中断。

检测线程是否被中断

在实际开发中,要判断中断状态位是否被置位,首先使用静态方法 Thread.currentThread() 方法来获取当前线程,再调用 interrupted() 方法来判断中断位的状态。如下:

  1. while (!Thread.currentThread().interrupted() && more work to do) {}

interrupted 和 isInterrupted 区别

  • interrupted 是一个静态方法,他检测当前线程是否中断,并且会清除当前线程的中断位Thread.interrupted()
  • isInterrupted 是一个实例方法,检测线程中断位,不会清除状态位 Thread.currentThread.isInterrupted()


如何中断线程

如果线程被 Object.wait, Thread.joinThread.sleep 三种方法之一阻塞,那么,它将接收到一个中断异常(InterruptedException),从而提早地终结被阻塞状态。interrupt 不会中断一个正在运行的线程。

要注意的是,中断线程不等于终止线程interrupt 只是只是改变了线程的状态位,来引起线程的注意或是唤醒沉睡的线程
但是当线程注意到(捕获到 InterruptedException 异常或是检测到状态位的改变),可以自行决定如何处理该线程,比如,可以让线程捕获异常后继续执行,或是中断线程。

在实际操作中,一般会把线程中断当做线程结束的条件,格式如下:

  1. @Override
  2. public void run() {
  3. while(!Thread.currentThread().isInterrupted() ){
  4. try{
  5. //处理正常的逻辑
  6. Thread.sleep(100);
  7. }catch (InterruptedException e){
  8. //被中断后的进入
  9. //由于抛出异常后会把状态位改变,所以这里应该手动改变状态位
  10. Thread.currentThread().interrupt();
  11. }finally{
  12. // 线程结束前的后续操作
  13. }
  14. }
  15. }

一般不会在捕获的异常中不进行任何操作,这样可能会处理不当中断,比如:

  1. @Override
  2. public void run() {
  3. try{
  4. Thread.sleep(100);
  5. }catch (InterruptedException e){
  6. }
  7. }

选择抛出异常,也是很好的选择:

  1. void mySubTask() throws InterruptedException {
  2. ...
  3. sleep(delay);
  4. ...
  5. }

如何中断一个线程

实例一:

  1. public class Example1 implements Runnable{
  2. private float d;
  3. @Override
  4. public void run() {
  5. while(true){
  6. for(int i=0;i<10000000;i++){
  7. d = (float) (d + (Math.PI + Math.E) / d);
  8. }
  9. System.out.println("I'm counting......");
  10. //转让调度器使用权
  11. Thread.yield();
  12. }
  13. }
  14. public static void main(String[] args) throws InterruptedException {
  15. Example1 example1 = new Example1();
  16. Thread t1 = new Thread(example1);
  17. t1.start();
  18. Thread.sleep(100);
  19. System.out.println("开始中断线程。。。。。。");
  20. t1.interrupt();
  21. }
  22. }

输出:

  1. I'm counting......
  2. 开始中断线程。。。。。。
  3. I'm counting......
  4. I'm counting......
  5. I'm counting......
  6. I'm counting......

可以看出来,线程被调用 interrupt 方法后,并没有被中断,任然在运行,所以说,interrupt 方法并不能是线程终止运行。

要是线程中断运行,有三种方法,分别是:抛出 Interrupt 异常,使用 Thread.interrupted() 不断检查中断状态位,使用信号量进行控制。

方法一:信号量法

  1. class Example2 implements Runnable{
  2. public static boolean isLive = true;
  3. float d;
  4. @Override
  5. public void run() {
  6. while(isLive){
  7. for(int i=0;i<10000000;i++){
  8. d = (float) (d + (Math.PI + Math.E) / d);
  9. }
  10. System.out.println("I'm counting......");
  11. //转让调度器使用权
  12. Thread.yield();
  13. }
  14. }
  15. public static void main(String[] args) throws InterruptedException {
  16. Example2 e2 = new Example2();
  17. Thread t1 = new Thread(e2);
  18. t1.start();
  19. Thread.sleep(100);
  20. System.out.println("开始中断线程。。。。。。");
  21. //设置改变信号量
  22. e2.isLive = false;
  23. }
  24. }

输出结果:

  1. I'm counting......
  2. 开始中断线程。。。。。。
  3. I'm counting......

方法二:抛出异常法

  1. public class Example1 implements Runnable{
  2. private double d = 0.0;
  3. public void run() {
  4. //死循环执行打印"I am running!" 和做消耗时间的浮点计算
  5. try {
  6. while (true) {
  7. System.out.println("I am running!");
  8. for (int i = 0; i < 900000; i++) {
  9. d = d + (Math.PI + Math.E) / d;
  10. }
  11. //休眠一断时间,中断时会抛出InterruptedException
  12. Thread.sleep(50);
  13. }
  14. } catch (InterruptedException e) {
  15. System.out.println("ATask.run() interrupted!");
  16. }
  17. }
  18. public static void main(String[] args) throws InterruptedException {
  19. Example1 example1 = new Example1();
  20. Thread t1 = new Thread(example1);
  21. t1.start();
  22. Thread.sleep(100);
  23. System.out.println("开始中断线程。。。。。。");
  24. t1.interrupt();
  25. }
  26. }

输出结果

  1. I am running!
  2. I am running!
  3. 开始中断线程。。。。。。
  4. ATask.run() interrupted!

方法三:Thread.interrupted() 监听

  1. class Example3 implements Runnable {
  2. @Override
  3. public void run() {
  4. while (!Thread.currentThread().interrupted()) {
  5. try {
  6. Thread.sleep(100);
  7. System.out.println("I'm counting......");
  8. } catch (InterruptedException e) {
  9. //设置状态位
  10. Thread.currentThread().interrupt();
  11. }
  12. }
  13. }
  14. public static void main(String[] args) throws InterruptedException {
  15. Example3 e = new Example3();
  16. Thread t1 = new Thread(e);
  17. t1.start();
  18. Thread.sleep(800);
  19. System.out.println("开始中断线程。。。。。。");
  20. t1.interrupt();
  21. }
  22. }

输出为:

  1. I'm counting......
  2. I'm counting......
  3. I'm counting......
  4. I'm counting......
  5. I'm counting......
  6. I'm counting......
  7. 开始中断线程。。。。。。

被遗弃的 stop 和 suspend

早期的 Java 版本提供了 stop 方法来终止一个线程,以及 suspend 来阻塞一个线程直到另一个线程调用 resume 来唤醒线程。stop 和 suspend 这两个方法都试图控制给定线程的想行为。

stop 方法试图终止一个线程的执行,包括未执完的 run 方法,其本身是很不安全的。比如说,当一个线程试图从一个账户转账到另一个账户,一个线程已经把钱取出来了,但是此正好被stop终止了线程,但是钱却没有转到另一个账户。这样的突然终止导致银行对象出于不稳定的状态。虽然此时锁被释放了,但是他的不稳定状态却不能被其他线程看到,这是很危险的。

suspend 方法用来挂起一个锁,虽然不会破坏对象,但是有可能导致死锁。假设如果用suspend方法挂起一个拥有锁的线程,那么,该锁在恢复之前是不可用的。如果此时,调用suspend方法的线程试图获取同一个锁,那么,此时就会出现死锁。