父线程内的子线程

发布于 2024-10-09 06:14:27 字数 78 浏览 2 评论 0原文

您能帮我解决这个问题吗:

如何在父线程中创建子线程。并且只有在子线程终止后才应终止父线程。并且父线程只有在子线程完成后才完成。

Can you please help me in this:

How to create a child thread in a parent thread. And the parent thread should be terminated only after the child thread is terminated. and the parent thread is completed only after completing child thread.

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

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

发布评论

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

评论(1

想你的星星会说话 2024-10-16 06:14:27

使用 NSCondition。让子线程发出终止条件信号。让家长等待。添加一个谓词(布尔值即可)来解决“虚假信号”问题。请参阅线程编程指南。

Use NSCondition. Have the child thread signal the condition on termination. Have the parent wait on the condition. Add a predicate (a bool will do it) to work around the 'spurious signals' issues. See Using Conditions on the Threading Programming Guide.

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