【说站】java停止线程的方式
2024-11-07
6
java停止线程的方式
1、使用Interrupt来通知
while (!Thread.currentThread().isInterrupted() && more work to do) { do more work }
首先通过 Thread.currentThread().isInterrupt() 判断线程是否被中断,随后检查是否还有工作要做。
public class StopThread implements Runnable { @Override public void run() { int count = 0; while (!Thread.currentThread().isInterrupted() && count < 1000) { System.out.println("count = " + count++); } } public static void main(String[] args) throws InterruptedException { Thread thread = new Thread(new StopThread()); thread.start(); Thread.sleep(5); thread.interrupt(); } }
2、使用volatile标志一个字段,通过判断这个字段true/false退出线程
/** * 描述: 演示用volatile的局限:part1 看似可行 */ public class WrongWayVolatile implements Runnable { private volatile boolean canceled = false; @Override public void run() { int num = 0; try { while (num <= 100000 && !canceled) { if (num % 100 == 0) { System.out.println(num + "是100的倍数。"); } num++; Thread.sleep(1); } } catch (InterruptedException e) { e.printStackTrace(); } } public static void main(String[] args) throws InterruptedException { WrongWayVolatile r = new WrongWayVolatile(); Thread thread = new Thread(r); thread.start(); Thread.sleep(5000); r.canceled = true; } }
以上就是java停止线程的方式,希望对大家有所帮助。更多Java学习指路:Java基础
本教程操作环境:windows7系统、java10版,DELL G3电脑。
更新于:1天前赞一波!
相关文章
- 【说站】java数组中元素求和的实例
- 【说站】java数组如何遍历全部的元素
- 【说站】java接口如何使用默认方法
- 【说站】java不同锁模式下的插队探究
- 【说站】java数组如何计算最大值
- 【说站】java线程池的优缺点分析
- 【说站】java throw和throws的区别
- 【说站】java线程池关闭的方法
- 【说站】java怎么从键盘输入数据
- 【说站】java怎么从键盘输入一个数
- 【说站】java线程池有哪些拒绝策略
- 【说站】java中Runnable接口是什么?
- 【说站】java join阻碍线程
- 【说站】Thread在java中生成接口
- 【说站】java使用wait改变线程状态
- 【说站】java Callable接口是什么
- 【说站】java park方法怎么用?
- 【说站】java中Future如何使用?
- 【说站】Java数组如何实现动态初始化
- 【说站】Java如何在PDF添加注释
文章评论
评论问答