dispatch_get_main_queue() 的线程 ID

发布于 2024-10-20 08:29:16 字数 50 浏览 0 评论 0原文

有没有办法找到与“dispatch_get_main_queue()”关联的线程ID?

Is there a way to find the thread id that is associated with 'dispatch_get_main_queue()'?

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

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

发布评论

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

评论(1

满身野味 2024-10-27 08:29:16

在主队列上评估的任何块都将在与其关联的线程上评估,因此您可以通过询问此类块正在哪个线程上评估来获取该线程的 ID:(

#import <mach/mach_init.h>

__block mach_port_t mainThreadID;
dispatch_async(dispatch_get_main_queue(), ^{
    mainThreadID = mach_thread_self();
});

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:

#import <mach/mach_init.h>

__block mach_port_t mainThreadID;
dispatch_async(dispatch_get_main_queue(), ^{
    mainThreadID = mach_thread_self();
});

(A mach_port_t is really just an unsigned int.)

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