java中停止线程的最佳方法是什么?

发布于 2024-09-24 13:33:09 字数 76 浏览 5 评论 0原文

我想在执行过程中停止线程。通过阅读,我认为我必须检查局部变量来确定线程是否应该继续或清理并退出 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无名指的心愿 2024-10-01 13:33:09

通常执行此操作的方法是创建一个布尔型易失性成员变量,可能称为“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.

阪姬 2024-10-01 13:33:09

您可以使用 中断方法。您可以在退出线程之前进行一些清理。一个简单的教程位于此处

You could use the interrupt method. You could do some clean up before exiting the thread. A simple tutorial is here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文