欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java中终止线程的三种方法

程序员文章站 2024-03-09 10:52:05
thread.stop, thread.suspend, thread.resume 和runtime.runfinalizersonexit 这些终止线程运行的方法已经被...

thread.stop, thread.suspend, thread.resume 和runtime.runfinalizersonexit 这些终止线程运行的方法已经被废弃,使用它们是极端不安全的!

1.线程正常执行完毕,正常结束

也就是让run方法执行完毕,该线程就会正常结束。

但有时候线程是永远无法结束的,比如while(true)。

2.监视某些条件,结束线程的不间断运行

需要while()循环在某以特定条件下退出,最直接的办法就是设一个boolean标志,并通过设置这个标志来控制循环是否退出。

public class threadflag extends thread {
  public volatile boolean exit = false;

  public void run() {
    while (!exit) {
      system.out.println("running!");
    }
  }

  public static void main(string[] args) throws exception {
    threadflag thread = new threadflag();
    thread.start();
    sleep(1147); // 主线程延迟5秒
    thread.exit = true; // 终止线程thread 
    thread.join();
    system.out.println("线程退出!");
  }
}

3.使用interrupt方法终止线程

如果线程是阻塞的,则不能使用方法2来终止线程。

public class threadinterrupt extends thread {
  public void run() {
    try {
      sleep(50000); // 延迟50秒
    } catch (interruptedexception e) {
      system.out.println(e.getmessage());
    }
  }

  public static void main(string[] args) throws exception {
    thread thread = new threadinterrupt();
    thread.start();
    system.out.println("在50秒之内按任意键中断线程!");
    system.in.read();
    thread.interrupt();
    thread.join();
    system.out.println("线程已经退出!");
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。