gpt4 book ai didi

ios - dispatch_async 什么时候真正派发?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:59:32 27 4
gpt4 key购买 nike

假设我有以下代码:

dispatch_async(dispatch_get_main_queue()) {
myFunction()
}

这表示异步调用调用 myFunction 的 block 。假设我在我的主队列中调用此代码,该队列也是为 dispatch_async 调用指定的队列。

在这种情况下,这个 block 实际上是什么时候被调用的?我当前的队列是否被抢占并且 block 立即运行,或者当前调用堆栈是否展开并且 block 在下一个事件循环中被调用?或者是其他东西?

最佳答案

When does this block actually get called in this case? Does my current queue get pre-empted and the block run immediately, or does the current call stack unroll and the block gets called at the next event loop? Or something else?

简而言之,如果您从主队列异步分派(dispatch)到主队列,分派(dispatch)的 block 将不会运行,直到您返回到主运行循环(并且在任何其他分派(dispatch)到主队列的 block 也完成之后)。

关于ios - dispatch_async 什么时候真正派发?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33204684/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com