ios - 在条件循环中调度队列的问题
<p><pre><code>-(void) sample
{
dispatch_queue_t aQueue = dispatch_queue_create("hello-world", NULL);
__blockint j=0;
for(int i=0; i<3; ++i){
dispatch_sync(aQueue, ^{
j++;
NSLog(@"I'm in Loop\n");
if(j==2)
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"I'm in main for the first time\n");
});
});
}
dispatch_sync(aQueue, ^{
NSLog(@"I'm in the second task of aQueue\n");
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"I'm just about to exit from the main thread\n");
});
});
}
</code></pre>
<p><strong>输出:</strong></p>
<pre><code>2016-02-02 17:11:16.226 facebookCustom Post I'm in Loop
2016-02-02 17:11:16.227 facebookCustom Post I'm in Loop
2016-02-02 17:11:16.227 facebookCustom Post I'm in Loop
2016-02-02 17:11:16.227 facebookCustom Post I'm in the second task of aQueue
2016-02-02 17:11:16.426 facebookCustom Post I'm in main for the first time
2016-02-02 17:11:16.426 facebookCustom Post I'm just about to exit from the main thread
</code></pre>
<p>代码的输出让我非常惊讶,因为我们第一次同步调度了队列,所以在第一个任务完成之前不应该执行该任务,对吧?那么 <code>I'm in the second task of aQueue</code> 怎么能在 <code>I'm in main first time</code> 之前打印出来呢?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我相信这在 <a href="https://stackoverflow.com/questions/26020656/dispatch-sync-always-execute-block-in-main-thread" rel="noreferrer noopener nofollow">this question</a> 的答案中得到了更完整的回答。并且与 GCD 实现中的优化有关。</p>
<p>这些 block 正在当前(主)线程上执行,而不是在 <code>aQueue</code> 上,作为优化,因此通过 <code>dispatch_get_main_queue()</code> 的任何调用都是“排队”(请原谅双关语)稍后执行,我认为在运行循环的下一次迭代中。</p>
<p>您可以通过使用 <code>NSLog()</code> 而不是 <code>printf()</code> 进行日志记录来获取更多信息,因为这将打印线程 ID。请使用该输出更新您的问题。</p>
<p>这就是我目前所拥有的一切,也许@bbum 会通过并提供更好的答案来澄清。</p>
<p>顺便说一句,这是个好问题。</p></p>
<p style="font-size: 20px;">关于ios - 在条件循环中调度队列的问题,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35150451/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35150451/
</a>
</p>
页:
[1]