服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|编程技术|正则表达式|

服务器之家 - 编程语言 - JAVA教程 - Java中终止线程的三种方法

Java中终止线程的三种方法

2020-07-14 17:27jiantixing9583 JAVA教程

这篇文章主要为大家详细介绍了Java中终止线程的三种方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

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

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

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

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

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

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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来终止线程。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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("线程已经退出!");
  }
}

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

延伸 · 阅读

精彩推荐