NSThread 和 detachNewThreadSelector:toTarget:withObject 之间的区别:
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一的区别是,第二种方法为您提供了对 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.