dispatch_async 和 dispatch_sync的区别

本文详细解析了dispatch_async与dispatch_sync的区别,特别是在串行队列中任务的执行顺序及返回时机的不同。通过示例代码展示了两种调度方式如何影响程序流程。

dispatch_async   异步执行

dispatch_sync     同步执行

 

Stack Overflow 上有很好的解释:

Yes,Using serial queue ensure the serial execution of tasks.The only difference is that dispatch_sync only return after the block is finished whereas dispatch_async return after it is added to the queue and may not finished.

for this code

dispatch_async(_serialQueue, ^{ printf("1");});
printf("2");
dispatch_async(_serialQueue, ^{ printf("3"); });
printf("4");

 It may print 2413 or 2143 or 1234 but 1 always before 3

for this code

dispatch_sync(_serialQueue, ^{ printf("1");});
printf("2");
dispatch_sync(_serialQueue, ^{ printf("3"); });
printf("4");

 it always print 1234

 

转载于:https://www.cnblogs.com/LaiSong/p/4998272.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值