GCD

GCD


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

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


1. 同步+串行(单线程顺序执行,有造成死锁的可能)
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL);
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
    });
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"2线程===%@", [NSThread currentThread]]);
    });
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"3线程===%@", [NSThread currentThread]]);
    });

打印结果:

2019-03-18 15:01:36.675180+0800 GCD[83006:13445626] 1线程===<NSThread: 0x6000029b53c0>{number = 1, name = main}
2019-03-18 15:01:36.675425+0800 GCD[83006:13445626] 2线程===<NSThread: 0x6000029b53c0>{number = 1, name = main}
2019-03-18 15:01:36.675567+0800 GCD[83006:13445626] 3线程===<NSThread: 0x6000029b53c0>{number = 1, name = main}

死锁:

    dispatch_sync(dispatch_get_main_queue(), ^{
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
    });
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL);
    dispatch_sync(queue(), ^{
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
        dispatch_sync(queue(), ^{
            NSLog(@"%@", [NSString stringWithFormat:@"2线程===%@", [NSThread currentThread]]);
        });
    });

2. 同步+并发(单线程顺序执行)
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
    });
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"2线程===%@", [NSThread currentThread]]);
    });
    dispatch_sync(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"3线程===%@", [NSThread currentThread]]);
    });

打印结果:

2019-03-18 14:44:00.540615+0800 GCD[80694:13378657] 1线程===<NSThread: 0x600003c08cc0>{number = 1, name = main}
2019-03-18 14:44:00.540869+0800 GCD[80694:13378657] 2线程===<NSThread: 0x600003c08cc0>{number = 1, name = main}
2019-03-18 14:44:00.541038+0800 GCD[80694:13378657] 3线程===<NSThread: 0x600003c08cc0>{number = 1, name = main}

3. 异步+串行(只开启1条新线程,在新线程顺序执行)
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_SERIAL);
    dispatch_async(queue, ^{
        for (int i=0; i<1000; i++) {
            NSLog(@"---");
        }
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
    });
    dispatch_async(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"2线程===%@", [NSThread currentThread]]);
    });
    dispatch_async(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"3线程===%@", [NSThread currentThread]]);
    });

打印结果:

2019-03-18 14:49:22.498191+0800 GCD[81423:13397748] ---
2019-03-18 14:49:22.498515+0800 GCD[81423:13397748] ---
2019-03-18 14:49:22.498815+0800 GCD[81423:13397748] ---
2019-03-18 14:49:22.499450+0800 GCD[81423:13397748] 1线程===<NSThread: 0x6000037759c0>{number = 3, name = (null)}
2019-03-18 14:49:22.499753+0800 GCD[81423:13397748] 2线程===<NSThread: 0x6000037759c0>{number = 3, name = (null)}
2019-03-18 14:49:22.500146+0800 GCD[81423:13397748] 3线程===<NSThread: 0x6000037759c0>{number = 3, name = (null)}


4. 异步+并发(多线程异步执行)
dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
    dispatch_async(queue, ^{
        for (int i=0; i<1000; i++) {
            NSLog(@"---");
        }
        NSLog(@"%@", [NSString stringWithFormat:@"1线程===%@", [NSThread currentThread]]);
    });
    dispatch_async(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"2线程===%@", [NSThread currentThread]]);
    });
    dispatch_async(queue, ^{
        NSLog(@"%@", [NSString stringWithFormat:@"3线程===%@", [NSThread currentThread]]);
    });

打印结果:

2019-03-18 14:51:24.275827+0800 GCD[81689:13406579] ---
2019-03-18 14:51:24.276025+0800 GCD[81689:13406579] ---
2019-03-18 14:51:24.276074+0800 GCD[81689:13406580] 3线程===<NSThread: 0x600000947dc0>{number = 4, name = (null)}
2019-03-18 14:51:24.276074+0800 GCD[81689:13406581] 2线程===<NSThread: 0x60000097c1c0>{number = 3, name = (null)}
2019-03-18 14:51:24.717813+0800 GCD[81689:13406579] ---
2019-03-18 14:51:24.718016+0800 GCD[81689:13406579] 1线程===<NSThread: 0x600000974ec0>{number = 5, name = (null)}

关于 dispatch_barrier_async 和 dispatch_group_async

  • 栅栏函数
    适用场景:任务1和任务2异步执行,任务4和任务5异步执行,并且能保证任务4、任务5绝对在任务3开始执行后执行,执行顺序 = [ 1 || 2 ] > 3 > [ 4 || 5 ]。
    注意:栅栏函数只能确定开启异步任务的顺序,并不能阻塞任务的完成,从👇打印的结果可以看出 “任务1” 和 “任务2” 为耗时任务,栅栏函数只能确保 “任务1” 和 “任务2” 的执行为异步的且开启顺序优先于 “任务3” ,而 “任务3” 的开启顺序又优先于 “任务4” “任务5”。
    dispatch_queue_t queue = dispatch_queue_create("queue", DISPATCH_QUEUE_CONCURRENT);
    dispatch_async(queue, ^{
        NSLog(@"开始任务1---%@",[NSThread currentThread]);
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            NSLog(@"结束任务1---%@",[NSThread currentThread]);
        });
    });
    dispatch_async(queue, ^{
        NSLog(@"开始任务2---%@",[NSThread currentThread]);
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            NSLog(@"结束任务2---%@",[NSThread currentThread]);
        });
    });
    
    dispatch_barrier_async(queue, ^{
        NSLog(@"开始任务3---%@",[NSThread currentThread]);
    });
    
    dispatch_async(queue, ^{
        NSLog(@"开始任务4---%@",[NSThread currentThread]);
    });
    dispatch_async(queue, ^{
        NSLog(@"开始任务5---%@",[NSThread currentThread]);
    });

打印结果:

2019-12-26 17:54:48.922552+0800 asdf[19648:397317] 开始任务1---<NSThread: 0x600000bcc640>{number = 4, name = (null)}
2019-12-26 17:54:48.922558+0800 asdf[19648:397318] 开始任务2---<NSThread: 0x600000bce540>{number = 5, name = (null)}
2019-12-26 17:54:48.922668+0800 asdf[19648:397318] 开始任务3---<NSThread: 0x600000bce540>{number = 5, name = (null)}
2019-12-26 17:54:48.922746+0800 asdf[19648:397318] 开始任务4---<NSThread: 0x600000bce540>{number = 5, name = (null)}
2019-12-26 17:54:48.922752+0800 asdf[19648:397317] 开始任务5---<NSThread: 0x600000bcc640>{number = 4, name = (null)}
2019-12-26 17:54:51.114557+0800 asdf[19648:397281] 结束任务2---<NSThread: 0x600000b9de40>{number = 1, name = main}
2019-12-26 17:54:53.922602+0800 asdf[19648:397281] 结束任务1---<NSThread: 0x600000b9de40>{number = 1, name = main}

GCD中“组”的使用可以确保异步任务完成后执行新的任务,可以做到阻塞任务的执行完毕!
注意:dispatch_group_enter()与dispatch_group_leave()要成对使用,否则就会进入无限的等待状态。

dispatch_group_enter:group 中未执行完毕任务数 +1
dispatch_group_leave :group 中未执行完毕任务数 -1。
当 group 中未执行完毕任务数为0的时候,才会使 dispatch_group_wait 解除阻塞,以及执行追加到 dispatch_group_notify 中的任务。

#import "ViewController.h"
@interface ViewController ()
@property(strong, nonatomic)dispatch_group_t group;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self testGCDGroup];
}

-(void)testGCDGroup {

    self.group = dispatch_group_create();
    dispatch_queue_t concurrent_q = dispatch_queue_create("concurrent_q", DISPATCH_QUEUE_CONCURRENT);
    
    dispatch_group_enter(self.group);
    dispatch_group_async(self.group, concurrent_q, ^{
        [self task1];
    });
    
    dispatch_group_enter(self.group);
    dispatch_group_async(self.group, concurrent_q, ^{
        [self task2];
    });
    
    dispatch_group_notify(self.group, concurrent_q, ^{
        [self taskComplete];
    });
    
}

-(void)task1 {
    NSLog(@"%@", [NSString stringWithFormat:@"task1执行中,线程===%@", [NSThread currentThread]]);
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        NSLog(@"task1 执行完成");
        dispatch_group_leave(self.group);
    });
}

-(void)task2 {
    NSLog(@"%@", [NSString stringWithFormat:@"task2执行中,线程===%@", [NSThread currentThread]]);
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        NSLog(@"task2 执行完成");
        dispatch_group_leave(self.group);
    });
}

-(void)taskComplete {
    NSLog(@"%@", [NSString stringWithFormat:@"全部执行完毕,线程===%@", [NSThread currentThread]]);
    NSLog(@"All task finished.");
}


@end

打印结果:

2019-03-18 11:01:03.152989+0800 GCD[55077:12997726] task1执行中,线程===<NSThread: 0x6000021aab80>{number = 3, name = (null)}
2019-03-18 11:01:03.152989+0800 GCD[55077:12997725] task2执行中,线程===<NSThread: 0x6000021aab40>{number = 4, name = (null)}
2019-03-18 11:01:06.396699+0800 GCD[55077:12997246] task2 执行完成
2019-03-18 11:01:08.649673+0800 GCD[55077:12997246] task1 执行完成
2019-03-18 11:01:08.650026+0800 GCD[55077:12997729] 全部执行完毕,线程===<NSThread: 0x60000219cec0>{number = 5, name = (null)}
2019-03-18 11:01:08.650128+0800 GCD[55077:12997729] All task finished.

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