GCD Swift 用法

参考https://blog.csdn.net/Hello_Hwc/article/details/54293280

进程/线程

进程:进程指在系统中能独立运行并作为资源分配的基本单位,它是由一组机器指令、数据和堆栈等组成的,是一个能独立运行的活动实体。
线程:线程是进程的基本执行单元,一个进程(程序)的所有任务都在线程中执行。
操作系统引入进程的目的:为了使多个程序能并发执行,以提高资源的利用率和系统的吞吐量。
操作系统引入线程的目的:在操作系统中再引入线程,则是为了减少程序在并发执行时所付出的时空开销,使OS具有更好的并发性。多线程技术可以提高程序的执行效率。

1. Gcd的概念

Grand Central Dispatch(GCD) 是 Apple 开发的一个多核编程的较新的解决方法。它主要用于优化应用程序以支持多核处理器以及其他对称多处理系统。它是一个在线程池模式的基础上执行的并发任务。在 Mac OS X 10.6 雪豹中首次推出,也可在 iOS 4 及以上版本使用

为什么要用 GCD 呢?

因为 GCD 有很多好处啊,具体如下:

  • GCD 可用于多核的并行运算
  • GCD 会自动利用更多的 CPU 内核(比如双核、四核)
  • GCD 会自动管理线程的生命周期(创建线程、调度任务、销毁线程)
  • 程序员只需要告诉 GCD 想要执行什么任务,不需要编写任何线程管理代码

2. GCD 任务和队列

学习 GCD 之前,先来了解 GCD 中两个核心概念:任务和队列。
任务:就是执行操作的意思,换句话说就是你在线程中执行的那段代码。在 GCD 中是放在 block 中的。执行任务有两种方式:同步执行(sync)和异步执行(async)。两者的主要区别是:是否等待队列的任务执行结束,以及是否具备开启新线程的能力。

  • 同步执行(sync)
    1.同步添加任务到指定的队列中,在添加的任务执行结束之前,会一直等待,直到队列里面的任务完成之后再继续执行。
    2.只能在当前线程中执行任务,不具备开启新线程的能力。
  • 异步执行(async)
    1.异步添加任务到指定的队列中,它不会做任何等待,可以继续执行任务。
    2.可以在新的线程中执行任务,具备开启新线程的能力。

注意: 异步执行(async) 虽然具有开启新线程的能力,但是并不一定开启新线程。这跟任务所指定的队列类型有关(下面会讲)。

队列(Dispatch Queue):这里的队列指执行任务的等待队列,即用来存放任务的队列。队列是一种特殊的线性表,采用 FIFO(先进先出)的原则,即新任务总是被插入到队列的末尾,而读取任务的时候总是从队列的头部开始读取。每读取一个任务,则从队列中释放一个任务。队列的结构可参考下图:

队列

在 GCD 中有两种队列:串行队列和并发队列。两者都符合 FIFO(先进先出)的原则。两者的主要区别是:执行顺序不同,以及开启线程数不同。

  • 串行队列(Serial Dispatch Queue)
    1.每次只有一个任务被执行。让任务一个接着一个地执行。(只开启一个线程,一个任务执行完毕后,再执行下一个任务)
  • 并发队列(Concurrent Dispatch Queue
    1.可以让多个任务并发(同时)执行。(可以开启多个线程,并且同时执行任务)

注意:并发队列 的并发功能只有在异步(dispatch_async)函数下才有效

两者具体区别如下两图所示。



3. GCD 的使用步骤

3.1 GCD 的使用步骤其实很简单,只有两步。

1.创建一个队列(串行队列或并发队列)
2.将任务追加到任务的等待队列中,然后系统就会根据任务类型执行任务(同步执行或异步执行)

let queue = DispatchQueue(label: "hwhQuene1")  //表示串行队列
let queue = DispatchQueue(label: "hwhQuene1",  attributes: .concurrent)  //并行队列
queue.async {
   print("线程1运行")
}
queue.sync {
   print("线程2运行")
}
  • 对于串行队列,GCD 提供了的一种特殊的串行队列:主队列(Main Dispatch Queue)。
    1.所有放在主队列中的任务,都会放到主线程中执行。
    2.可使用DispatchQueue.main获得主队列。
let mainQuene = DispatchQueue.main
  • 对于并发队列,GCD 默认提供了全局并发队列(Global Dispatch Queue)。
    1.可以使用DispatchQueue.global()来获取
let globalQuene = DispatchQueue.global()

3.2 任务的创建方法

GCD 提供了同步执行任务的创建方法sync和异步执行任务创建方法async。

queue.async {
   print("线程1运行")
}
queue.sync {
   print("线程2运行")
}

虽然使用 GCD 只需两步,但是既然我们有两种队列(串行队列/并发队列),两种任务执行方式(同步执行/异步执行),那么我们就有了四种不同的组合方式。这四种不同的组合方式是:

1.同步执行 + 并发队列
2.异步执行 + 并发队列
3.同步执行 + 串行队列
4.异步执行 + 串行队列

并发串发

4. GCD 的基本使用

先来讲讲并发队列的两种执行方式。

4.1 同步执行 + 并发队列

  • 在当前线程中执行任务,不会开启新线程,执行完一个任务,再执行下一个任务。
    func syncConcurrent()  {
        
        print("syncConcurrent---%@",Thread.current)
        print("syncConcurrent--begin")
        
        let queue = DispatchQueue(label: "hwhQuene1",  attributes: .concurrent)
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程1运行---%@",Thread.current)
            }
            
        }
        
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程2运行---%@",Thread.current)
            }
            
        }
        
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程3运行---%@",Thread.current)
            }
            
        }
        
         print("syncConcurrent--end")
    }

输出结果
syncConcurrent---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
syncConcurrent--begin
线程1运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程1运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程1运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x281b9ae40>{number = 1, name = main}
syncConcurrent--end

从同步执行 + 并发队列中可看到:

  • 所有任务都是在当前线程(主线程)中执行的,没有开启新的线程(同步执行不具备开启新线程的能力)。
  • 所有任务都在打印的syncConcurrent---begin和syncConcurrent---end之间执行的(同步任务需要等待队列的任务执行结束)。
  • 任务按顺序执行的。按顺序执行的原因:虽然并发队列可以开启多个线程,并且同时执行多个任务。但是因为本身不能创建新线程,只有当前线程这一个线程(同步任务不具备开启新线程的能力),所以也就不存在并发。而且当前线程只有等待当前队列中正在执行的任务执行完毕之后,才能继续接着执行下面的操作(同步任务需要等待队列的任务执行结束)。所以任务只能一个接一个按顺序执行,不能同时被执行。

4.2 异步执行 + 并发队列

可以开启多个线程,任务交替(同时)执行。

    func syncConcurrent()  {
        
        print("syncConcurrent---%@",Thread.current)
        print("syncConcurrent--begin")
        
        let queue = DispatchQueue(label: "hwhQuene1",  attributes: .concurrent)
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程1运行---%@",Thread.current)
            }
            
        }
        
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程2运行---%@",Thread.current)
            }
            
        }
        
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程3运行---%@",Thread.current)
            }
            
        }
        
         print("syncConcurrent--end")
    }

syncConcurrent---%@ <NSThread: 0x28386ee40>{number = 1, name = main}
syncConcurrent--begin
syncConcurrent--end
线程2运行---%@ <NSThread: 0x283803d00>{number = 4, name = (null)}
线程1运行---%@ <NSThread: 0x283835200>{number = 3, name = (null)}
线程3运行---%@ <NSThread: 0x283837540>{number = 5, name = (null)}
线程2运行---%@ <NSThread: 0x283803d00>{number = 4, name = (null)}
线程1运行---%@ <NSThread: 0x283835200>{number = 3, name = (null)}
线程3运行---%@ <NSThread: 0x283837540>{number = 5, name = (null)}
线程2运行---%@ <NSThread: 0x283803d00>{number = 4, name = (null)}
线程1运行---%@ <NSThread: 0x283835200>{number = 3, name = (null)}
线程3运行---%@ <NSThread: 0x283837540>{number = 5, name = (null)}

在异步执行 + 并发队列中可以看出:

  • 除了当前线程(主线程),系统又开启了3个线程,并且任务是交替/同时执行的。(异步执行具备开启新线程的能力。且并发队列可开启多个线程,同时执行多个任务)。
  • 所有任务是在打印的syncConcurrent---begin和syncConcurrent---end之后才执行的。说明当前线程没有等待,而是直接开启了新线程,在新线程中执行任务(异步执行不做等待,可以继续执行任务)。

接下来再来讲讲串行队列的两种执行方式。

4.3 同步执行 + 串行队列

  • 不会开启新线程,在当前线程执行任务。任务是串行的,执行完一个任务,再执行下一个任务。
func syncSerial()  {
        
        print("syncConcurrent---%@",Thread.current)
        print("syncConcurrent--begin")
        
        let queue = DispatchQueue(label: "hwhQuene1")
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程1运行---%@",Thread.current)
            }
            
        }
        
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程2运行---%@",Thread.current)
            }
            
        }
        
        queue.sync {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程3运行---%@",Thread.current)
            }
            
        }
        
        print("syncConcurrent--end")
    }

syncConcurrent---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
syncConcurrent--begin
线程1运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程1运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程1运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程2运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
线程3运行---%@ <NSThread: 0x28323ee00>{number = 1, name = main}
syncConcurrent--end

在同步执行 + 串行队列可以看到:

  • 所有任务都是在当前线程(主线程)中执行的,并没有开启新的线程(同步执行不具备开启新线程的能力)。
  • 所有任务都在打印的syncConcurrent---begin和syncConcurrent---end之间执行(同步任务需要等待队列的任务执行结束。
  • 任务是按顺序执行的(串行队列每次只有一个任务被执行,任务一个接一个按顺序执行)。

4.4 异步执行 + 串行队列

  • 会开启新线程,但是因为任务是串行的,执行完一个任务,再执行下一个任务
 func asyncSerial()  {
        
        print("syncConcurrent---%@",Thread.current)
        print("syncConcurrent--begin")
        
        let queue = DispatchQueue(label: "hwhQuene1")
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程1运行---%@",Thread.current)
            }
            
        }
        
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程2运行---%@",Thread.current)
            }
            
        }
        
        queue.async {
            for _ in 0...2{
                Thread.sleep(forTimeInterval: 2)
                print("线程3运行---%@",Thread.current)
            }
            
        }
        
        print("syncConcurrent--end")
    }

syncConcurrent---%@ <NSThread: 0x282032e40>{number = 1, name = main}
syncConcurrent--begin
syncConcurrent--end
线程1运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程1运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程1运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程2运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程2运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程2运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程3运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程3运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}
线程3运行---%@ <NSThread: 0x282073e80>{number = 4, name = (null)}

在异步执行 + 串行队列可以看到:

  • 开启了一条新线程(异步执行具备开启新线程的能力,串行队列只开启一个线程)。
  • 所有任务是在打印的syncConcurrent---begin和syncConcurrent---end之后才开始执行的(异步执行不会做任何等待,可以继续执行任务)。
  • 任务是按顺序执行的(串行队列每次只有一个任务被执行,任务一个接一个按顺序执行)。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342