杀死Java中的无限循环

杀死Java中的无限循环,第1张

杀死Java中的无限循环

山姆·亚当斯给我发了以下答案,这是我接受的答案

Thread thread = new Thread(myRunnableCode);thread.start();thread.join(timeoutMs);if (thread.isAlive()) {  thread.interrupt();}

myRunnableCode
定期检查
Thread.isInterrupted()
,如果返回true则干净地退出。

或者,您可以执行以下 *** 作:

Thread thread = new Thread(myRunnableCode);thread.start();thread.join(timeoutMs);if (thread.isAlive()) {  thread.stop();}

但是由于该方法很危险,因此已被弃用。

http://download.oracle.com/javase/1.4.2/docs/api/java/lang/Thread.html#stop()
“此方法本质上是不安全的。使用Thread.stop停止线程会导致其解锁所有它已锁定的监视器的数量(由于未经检查的ThreadDeath异常正在堆栈中传播),如果先前受这些监视器保护的任何对象处于不一致状态,则其他线程可以看到损坏的对象,从而可能导致以任意行为。”

我已经实现了第二个,它可以满足我目前的需求。



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存