NSThread 和 detachNewThreadSelector:toTarget:withObject 之间的区别:

发布于 2024-08-30 21:47:54 字数 165 浏览 6 评论 0原文

在 NSThread 文档中,我遇到了 detachNewThreadSelector:toTarget:withObject: 方法。 该方法与使用 initWithTarget:selector:object: 创建线程然后使用 start 启动它有什么区别?

In the NSThread documentation, I came across the method detachNewThreadSelector:toTarget:withObject:.
What's the difference between that method and creating a thread with initWithTarget:selector:object: and then starting it with start?

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-09-06 21:47:54

唯一的区别是,第二种方法为您提供了对 NSThread 对象的引用,因此您可以在启动之前设置堆栈大小或优先级,或者使用 isExecuting/Finished/Cancelled 方法稍后检查其状态。

The only difference is that the second way gives you a reference to the NSThread object, so you can do things like set the stack size or priority before starting it, or use the isExecuting/Finished/Cancelled methods to check its status later.

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