如何停止无需任何使用就永远运行的线程

如何停止无需任何使用就永远运行的线程,第1张

如何停止无需任何使用就永远运行的线程

首先,您不在这里启动任何线程!您应该创建一个新线程并将混乱的名称传递

thread1
Runnable
给它:

thread1 t1 = new thread1();final Thread thread = new Thread(t1);thread.start();

现在,当您真正拥有线程时,有一个内置功能可以中断正在运行的线程,称为…

interrupt()

thread.interrupt();

但是,仅设置此标志无效,您必须在运行的线程中进行处理:

while(!Thread.currentThread().isInterrupted()){    try{     Thread.sleep(10);    }    catch(InterruptedException e){        Thread.currentThread().interrupt();        break; //optional, since the while loop conditional should detect the interrupted state    }    catch(Exception e){        e.printStackTrace();    }

需要注意的两件事:

while
循环现在在thread时结束
isInterrupted()
。但是,如果线程在睡眠期间被中断,那么JVM会非常友好,它会抛出
InterruptedException
out来通知您
sleep()
。抓住它,打破循环。而已!


至于其他建议:

  • 关于Thread.stop():

不推荐使用 。这种方法本质上是不安全的[…]

  • 添加您自己的标志并留意它是可以的(请记住要使用
    AtomicBoolean
    volatile
    !),但是如果JDK已经为您提供了这样的内置标志,为什么还要麻烦呢?额外的好处是可以中断
    sleep
    s,使线程中断的响应速度更快。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5499724.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存