关于GCD中的线程数

前言

gcd用起来很方便,虽说是由系统去控制线程的创建,销毁,调配。我们无需操心。但是滥用的话也会引起线程数量过多,系统开销过大,同时引入的问题也会更多,不好调试。所以需要合理的使用gcd,保持app的线程数量在合理范围之内。比如日志,数据库操作都在固定的线程中。

那么,下面就来简单讨论下gcd下线程的创建情况。

初步结论

  1. dispatch_sync,同步操作,派发到任何队列,都不会开启新线程。但是注意不要dispatch到当前队列中,否则会引发死锁。因为sync本身是同步操作,会阻塞当前的线程,所以另外新开线程也没有意义,会在当前线程中执行task。但如果是派发到主线程的,还是会回到主线程中去执行

  2. dispatch_async,异步操作,派发自己创建的串行队列中,会创建一个线程。如果派发到主线程中,则会在主线程中执行。

  3. dispatch_async到并发队列中,会创建线程。但同时并行的线程数是由系统当前的负载和cpu核心数来决定的。

这里说的创建线程,其实也不太准确,并不一定100%会创建,如果线程池中有可满足当前需求的线程,就不会创建了。

系统管理了一个线程池,经测试,最大开启的线程数为66个。其中串行队列的线程和并发队列的线程是分开的,比如串行队列用了thread1,并发队列是不会用到thread1的。

dispatch_sync

贴段代码:

- (void)testSyncSerialQueue {
    NSLog(@"main thread = %@", [NSThread mainThread]);

    dispatch_queue_t serialQueue = dispatch_queue_create("com.summer.serial", 0);

    dispatch_sync(serialQueue, ^{
        NSLog(@"1,current thread = %@", [NSThread currentThread]);
    });

    dispatch_sync(serialQueue, ^{
        NSLog(@"2,current thread = %@", [NSThread currentThread]);
    });

    dispatch_queue_t serialQueue2 = dispatch_queue_create("com.summer.serial2", 0);

    dispatch_sync(serialQueue2, ^{
        NSLog(@"11,current thread = %@", [NSThread currentThread]);
    });
}

结果为:

2016-07-27 16:20:41.109 GCDQueue[3426:1181884] main thread = <NSThread: 0x7fb671d06660>{number = 1, name = main}
2016-07-27 16:20:41.109 GCDQueue[3426:1181884] 1,current thread = <NSThread: 0x7fb671d06660>{number = 1, name = main}
2016-07-27 16:20:41.109 GCDQueue[3426:1181884] 2,current thread = <NSThread: 0x7fb671d06660>{number = 1, name = main}
2016-07-27 16:20:41.110 GCDQueue[3426:1181884] 11,current thread = <NSThread: 0x7fb671d06660>{number = 1, name = main}

我们dispatch_sync一些task到串行队列中,但是执行却都是在当前队列中。说明dispatch_sync都是在当前线程中执行的。

dispatch_async到串行队列

- (void)testAsyncSerialQueue {
    NSLog(@"main thread = %@", [NSThread mainThread]);

    // serialQueue1
    dispatch_queue_t serialQueue = dispatch_queue_create("com.summer.serial", DISPATCH_QUEUE_SERIAL);

    dispatch_async(serialQueue, ^{
        NSLog(@"1, dispatch_async serialQueue1, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(serialQueue, ^{
        NSLog(@"2, dispatch_async serialQueue1, current thread = %@", [NSThread currentThread]);
    });

    // serialQueue2
    dispatch_queue_t serialQueue2 = dispatch_queue_create("com.summer.serial2", DISPATCH_QUEUE_SERIAL);

    dispatch_async(serialQueue2, ^{
        NSLog(@"11, dispatch_async serialQueue2, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(serialQueue2, ^{
        NSLog(@"22, dispatch_async serialQueue2, current thread = %@", [NSThread currentThread]);
    });
}

输出结果:

2016-07-27 16:31:44.364 GCDQueue[3550:1237427] main thread = <NSThread: 0x7f81d1506800>{number = 1, name = main}
2016-07-27 16:31:44.365 GCDQueue[3550:1238329] 11, dispatch_async serialQueue2, current thread = <NSThread: 0x7f81d1784aa0>{number = 3, name = (null)}
2016-07-27 16:31:44.365 GCDQueue[3550:1238321] 1, dispatch_async serialQueue1, current thread = <NSThread: 0x7f81d17852b0>{number = 2, name = (null)}
2016-07-27 16:31:44.365 GCDQueue[3550:1238329] 22, dispatch_async serialQueue2, current thread = <NSThread: 0x7f81d1784aa0>{number = 3, name = (null)}
2016-07-27 16:31:44.365 GCDQueue[3550:1238321] 2, dispatch_async serialQueue1, current thread = <NSThread: 0x7f81d17852b0>{number = 2, name = (null)}

结果可以看出,每个串行队列创建了一个线程。

dispatch_async到并行队列

- (void)testAsyncConcurrentQueue {

    NSLog(@"main thread = %@", [NSThread mainThread]);

    // concurrentQueue1
    dispatch_queue_t concurrentQueue = dispatch_queue_create("com.summer.concurrent1", DISPATCH_QUEUE_CONCURRENT);

    dispatch_async(concurrentQueue, ^{
        NSLog(@"1, dispatch_async concurrentQueue1, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue, ^{
        NSLog(@"2, dispatch_async concurrentQueue1, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue, ^{
        NSLog(@"3, dispatch_async concurrentQueue1, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue, ^{
        NSLog(@"4, dispatch_async concurrentQueue1, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue, ^{
        NSLog(@"5, dispatch_async concurrentQueue1, current thread = %@", [NSThread currentThread]);
    });

    // concurrentQueue2
    dispatch_queue_t concurrentQueue2 = dispatch_queue_create("com.summer.concurrent2", DISPATCH_QUEUE_CONCURRENT);

    dispatch_async(concurrentQueue2, ^{
        NSLog(@"11, dispatch_async concurrentQueue2, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue2, ^{
        NSLog(@"22, dispatch_async concurrentQueue2, current thread = %@", [NSThread currentThread]);
    });

    dispatch_async(concurrentQueue2, ^{
        NSLog(@"33, dispatch_async concurrentQueue2, current thread = %@", [NSThread currentThread]);
    });
}
2016-07-27 16:35:46.697 GCDQueue[3603:1259460] main thread = <NSThread: 0x7fe02ad01f30>{number = 1, name = main}
2016-07-27 16:35:46.698 GCDQueue[3603:1260034] 2, dispatch_async concurrentQueue1, current thread = <NSThread: 0x7fe02ac28a40>{number = 3, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260045] 1, dispatch_async concurrentQueue1, current thread = <NSThread: 0x7fe02ac1f370>{number = 2, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260111] 3, dispatch_async concurrentQueue1, current thread = <NSThread: 0x7fe02ac1c060>{number = 4, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260112] 4, dispatch_async concurrentQueue1, current thread = <NSThread: 0x7fe02ac03c50>{number = 5, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260034] 5, dispatch_async concurrentQueue1, current thread = <NSThread: 0x7fe02ac28a40>{number = 3, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260113] 11, dispatch_async concurrentQueue2, current thread = <NSThread: 0x7fe02ae06210>{number = 6, name = (null)}
2016-07-27 16:35:46.698 GCDQueue[3603:1260045] 22, dispatch_async concurrentQueue2, current thread = <NSThread: 0x7fe02ac1f370>{number = 2, name = (null)}
2016-07-27 16:35:46.699 GCDQueue[3603:1260111] 33, dispatch_async concurrentQueue2, current thread = <NSThread: 0x7fe02ac1c060>{number = 4, name = (null)}

细看一下,在输出2和5时,用的是同一个线程。所以说dispatch_async不一定就会创建线程。

暴力开启

for (int i = 0; i < 2000; i++) {
        dispatch_async(concurrentQueue, ^{
            NSLog(@"%d, for in dispatch_async concurrentQueue1, current thread = %@", i, [NSThread currentThread]);
        });
    }

丢了2000个task进去,测试系统最多开启66个线程。

在stackoverflow找到个类似的提问。但是apple没有文档说明过。http://stackoverflow.com/questions/7213845/number-of-threads-created-by-gcd

大致是说gcd的线程池最大64个,加上主线程和其他的线程为66个。gcd会动态的创建更多的线程,在当前的任务被阻塞的时候。所以要尽量避免block当前任务。

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

推荐阅读更多精彩内容