GCD

作者: ProgressChen | 来源:发表于2016-12-22 00:10 被阅读13次

GCD

异步刷新屏幕在主队列中执行

dispatch_async(dispatch_get_main_queue(), ^{
   //更新屏幕代码
   });

dispatch_sync()锁死

NSLog(@"1");
 dispatch_sync(dispatch_get_main_queue(), ^{
  NSLog(@"2"); //阻塞,造成锁死
 });
 NSLog(@"3");

在当前线程中调用dispatch_sync()回造成锁死
dispatch_sync()会做两件事情

  1. 将block加入到queue中
  2. 阻塞当前线程,等待block返回。
    了解了dispatch_sync()做的事情就很明白为什么会被锁死,dispatch_sync()在调用立即阻塞当前线程等待block执行完毕,而block又发现当前线程被阻塞就等着,所以就造成了锁死。

下面是搜到的英文解释。

dispatch_sync does two things:

  • queue a block
  • blocks the current thread until the block has finished running

Given that the main thread is a serial queue (which means it uses only one thread), the following statement:
dispatch_sync(dispatch_get_main_queue(), ^(){/.../});
will cause the following events:

  • dispatch_sync queues the block in the main queue.
  • dispatch_sync blocks the thread of the main queue until the block finishes executing.
  • dispatch_sync waits forever because the thread where the block is supposed to run is blocked.

The key to understanding this is that dispatch_sync does not execute blocks, it only queues them. Execution will happen on a future iteration of the run loop.

相关文章

  • 多线程之GCD

    GCD介绍 1、GCD简介 2、GCD任务和队列 3、GCD 的基本使用 4、GCD 线程间的通信 5、GCD 的...

  • 扩展GCD(求逆元,解同余方程等等)

    首先要知道gcd函数的基本性质:gcd(a,b)=gcd(b,a)=gcd(|a|,|b|)=gcd(b,a%b)...

  • iOS - GCD

    目录 GCD简介 GCD核心概念 GCD队列的使用 GCD的常见面试题 GCD简介 Grand Central D...

  • iOS-多线程:GCD

    GCD 简介 GCD 任务和队列 GCD 的使用步骤 GCD 的基本使用(6种不同组合区别) GCD 线程间的通信...

  • 浅析GCD

    GCD目录: 1. GCD简介 为什么要用GCD呢? GCD可用于多核的并行运算GCD会自动利用更多的CPU内核(...

  • 7.3 多线程-GCD

    多线程-GCD 多线程-GCD-串行并行 多线程-GCD.png GCD-线程的通讯、延时操作、定时器 GCD-线...

  • iOS 多线程--GCD

    一、GCD基本介绍 1.GCD简介 GCD是Grand Central Dispatch的缩写,GCD是苹果推出的...

  • 自用算法模板(JAVA版)

    一、数论 1)GCD GCD(求最大公约数) QGCD(快速GCD) extGCD(拓展GCD,解决ax + by...

  • GCD介绍

    一、GCD简单介绍 什么是GCD GCD优势 任务和队列 GCD有2个核心概念 GCD的使用就2个步骤 将任务添加...

  • 7.多线程基础(七)GCD加强

    1.GCD串行队列和并发队列 2.GCD延时执行 3.GCD线程组:(的作用) 4.GCD定时器: GCD的实现 ...

网友评论

      本文标题:GCD

      本文链接:https://www.haomeiwen.com/subject/djjcvttx.html