java中停止线程的最佳方法是什么?
我想在执行过程中停止线程。通过阅读,我认为我必须检查局部变量来确定线程是否应该继续或清理并退出 run()。有什么干净地实施这个的想法吗?
I would like to stop a thread in mid execution. From reading around, I am of the thought I will have to check a local variable to determine if the thread should continue or clean up and exit run(). Any ideas of cleanly implementing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常执行此操作的方法是创建一个布尔型易失性成员变量,可能称为“stopThread”。线程定期轮询该变量以查看是否应终止。
Often a way to do this is create a boolean volatile member variable, perhaps called "stopThread". The thread periodically polls this variable to see if it should terminate.
您可以使用 中断方法。您可以在退出线程之前进行一些清理。一个简单的教程位于此处
You could use the interrupt method. You could do some clean up before exiting the thread. A simple tutorial is here