java中如何将主线程加入到线程池中

发布于 2024-11-27 03:10:13 字数 64 浏览 0 评论 0原文

就像使用 join() 连接两个线程一样,有没有办法将线程连接到 ExecutorService 对象(线程池)?

Like joining two threads using join(), is there a way to join a thread to a ExecutorService object (a thread pool) ?

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

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

发布评论

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

评论(1

内心荒芜 2024-12-04 03:10:13

根据文档,您可以从第二个线程调用执行程序服务的 shutdown 方法,然后调用 waitTermination。此方法将阻塞,直到执行程序服务中所有提交的作业完成。

According to the docs, you could, from your second thread, call the shutdown method of your executor service and next, call for awaitTermination. This method will block till completion of all submitted jobs in the executor service.

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