线程结束时会发生什么?

发布于 2024-11-17 07:36:10 字数 195 浏览 2 评论 0原文

一旦线程到达末端,会发生什么?它会自杀吗?或者它是否漂浮在内存中占用空间?到底发生了什么?

new Thread(new Runnable() {
public void run() {
//do some stuff
...

//ok... did some stuff, now what?
}
}).start();

What happens to a thread once it hits the ends? Does it kill itself? or does it float around in memory taking up space? what exactly happens?

new Thread(new Runnable() {
public void run() {
//do some stuff
...

//ok... did some stuff, now what?
}
}).start();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

西瓜 2024-11-24 07:36:10

它完成并且它的所有 ThreadLocal 对象都符合垃圾回收的条件。

It finishes and all it's ThreadLocal objects become eligible for Garbage collection.

彩虹直至黑白 2024-11-24 07:36:10

它只是像正常的程序一样结束。垃圾收集器可以回收它占用的内存。如果您希望线程继续运行,您可以将其与 while 循环等一起使用。

It just simply ends like a normal piece of program. and Garbage Collector can recycle the memory it took. If you want the thread continues to run, you would use it with a while loop or so.

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