dispatch_get_main_queue() 的线程 ID
有没有办法找到与“dispatch_get_main_queue()”关联的线程ID?
Is there a way to find the thread id that is associated with 'dispatch_get_main_queue()'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在主队列上评估的任何块都将在与其关联的线程上评估,因此您可以通过询问此类块正在哪个线程上评估来获取该线程的 ID:(
mach_port_t
实际上只是一个无符号整数。)Any block evaluated on the main queue will evaluate on the thread it is associated with, so you can get the ID of that thread by asking what thread such a block is evaluating on:
(A
mach_port_t
is really just an unsigned int.)