iOS GCD簡單嵌套測試結論

前言:最近在做SDK方向业扒,對于線程、鎖舒萎、高并發(fā)等關鍵詞使用很頻繁程储。做這個嵌套測試蹭沛,主要是搞懂代碼的執(zhí)行順序,從而對線程章鲤、隊列摊灭、任務有更深的理解。

先上結果

image.png

開始測試败徊,默認認為讀者對GCD有所了解

臨界區(qū):gcd的block里的任務帚呼,如果嵌套了gcd,那么其余的作用域皱蹦,我定義為臨界區(qū)煤杀。

一、當前串行隊列

self.cxqueue = dispatch_queue_create("cxqueue", DISPATCH_QUEUE_SERIAL);

1. 在當前隊列追加同步任務沪哺,死鎖

//注意是追加任務 是同一個隊列 這種類型必定死鎖沈自。比如在主線程追加同步任務會死鎖,主線程并不特殊辜妓,就是個串行隊列枯途。
     dispatch_async(self.cxqueue, ^{
        //不管外邊是async還是sync,內部這樣嵌套的籍滴,必定死鎖
        dispatch_sync(self.cxqueue, ^{
            
        });
    });
    
    //典型死鎖酪夷,屬于上邊死鎖類型
    dispatch_sync(dispatch_get_main_queue(), ^{
         
    });

2. 在當前隊列追加異步任務,先執(zhí)行完臨界區(qū)任務孽惰,再執(zhí)行追加的任務晚岭,不開辟新線程

    dispatch_async(self.cxqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);

        dispatch_async(self.cxqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3   - %@",[NSThread currentThread]);
        });
        
        dispatch_async(self.cxqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4   - %@",[NSThread currentThread]);
        });

        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
    });
    
打印  3、4會等待臨界區(qū)執(zhí)行完才執(zhí)行
22:56.16  1 任務開始 - <NSThread: >{number = 6, name = (null)}
22:56.16  2 任務結尾 - <NSThread: >{number = 6, name = (null)}
22:56.66  3   - <NSThread: >{number = 6, name = (null)}
22:57.16  4   - <NSThread: >{number = 6, name = (null)}
    

3. 在當前隊列開啟同步串行隊列灰瞻,臨界區(qū)和同步任務在當前線程順序執(zhí)行腥例,不開辟新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_SERIAL);
    
    dispatch_async(self.cxqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);

        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 同步串行 - %@",[NSThread currentThread]);
        });
        
        dispatch_sync(queue, ^{
            //[NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 同步串行 - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
    
打印   臨界區(qū)2會等待3、4執(zhí)行完后才執(zhí)行
43:26.02 1 任務開始 - <NSThread: >{number = 5, name = (null)}
43:26.52 3 同步串行 - <NSThread: >{number = 5, name = (null)}
43:26.53 4 同步串行 - <NSThread: >{number = 5, name = (null)}
43:26.53 2 任務結尾 - <NSThread: >{number = 5, name = (null)}

4. 在當前隊列開啟異步串行隊列酝润,兩者沒有明確的先后順序(異步任務之前的代碼先執(zhí)行燎竖,后邊的誰搶到誰執(zhí)行),新隊列任務按加入順序順序執(zhí)行要销,開啟一個新線程

  dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_SERIAL);
    
    dispatch_async(self.cxqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);

        dispatch_async(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 異步串行 - %@",[NSThread currentThread]);
        });
        
        dispatch_async(queue, ^{
            //[NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 異步串行 - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印   
任務3 會等待 臨界區(qū)1執(zhí)行完
任務4 會等待 任務3執(zhí)行完
臨界區(qū)2任務 不會等待3构回、4執(zhí)行完,但是肯定在1后邊執(zhí)行
40:02.56  1 任務開始 - <NSThread: >{number = 7, name = (null)}
40:02.56  2 任務結尾 - <NSThread: >{number = 7, name = (null)}
40:03.06  3 異步串行 - <NSThread: >{number = 5, name = (null)}
40:03.06  4 異步串行 - <NSThread: >{number = 5, name = (null)}

5. 在當前隊列開啟同步并發(fā)隊列疏咐,臨界區(qū)和同步任務在當前線程順序執(zhí)行纤掸,不開辟新線程

 dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_CONCURRENT);
    
    dispatch_async(self.cxqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:0.5];
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 同步并發(fā) - %@",[NSThread currentThread]);
        });
        
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 同步并發(fā) - %@",[NSThread currentThread]);
        });
        
        [NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印   3等1 4等3  2等4
33:40.64 1 任務開始 - <NSThread: >{number = 6, name = (null)}
33:41.65 3 同步并發(fā) - <NSThread: >{number = 6, name = (null)}
33:42.15 4 同步并發(fā) - <NSThread: >{number = 6, name = (null)}
33:43.16 2 任務結尾 - <NSThread: >{number = 6, name = (null)}

6. 在當前隊列開啟異步并發(fā)隊列,兩者沒有明確的先后順序(異步任務之前的代碼先執(zhí)行浑塞,后邊的誰搶到誰執(zhí)行)借跪,新隊列任務并發(fā)執(zhí)行,開啟多個新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_CONCURRENT);
    
    dispatch_async(self.cxqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:0.5];
        
        dispatch_async(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        dispatch_async(queue, ^{
            //[NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印
234均等待1部分執(zhí)行完畢
234互相之間無關聯酌壕,誰先搶到資源誰就調用
把串行隊列想象成主隊列掏愁,就相當于在主線程開了異步并發(fā)隊列
37:42.60 1 任務開始 - <NSThread:>{number = 6, name = (null)}
37:43.11 2 任務結尾 - <NSThread:>{number = 6, name = (null)}
37:43.11 4 異步并發(fā) - <NSThread:>{number = 4, name = (null)}
37:43.61 3 異步并發(fā) - <NSThread:>{number = 7, name = (null)}    

二歇由、當前并發(fā)隊列(同步異步結論一樣)

self.bfqueue = dispatch_queue_create("bfqueue", DISPATCH_QUEUE_CONCURRENT);

1. 在當前隊列追加同步任務,臨界區(qū)和同步任務在當前線程順序執(zhí)行果港,不開辟新線程

    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:0.5];
        
        dispatch_sync(self.bfqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 同步并發(fā) - %@",[NSThread currentThread]);
        });
        
        dispatch_sync(self.bfqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 同步并發(fā) - %@",[NSThread currentThread]);
        });
        
        [NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印
48:51.16 1 任務開始 - <NSThread:>{number = 7, name = (null)}
48:52.17 3 同步并發(fā) - <NSThread:>{number = 7, name = (null)}
48:52.67 4 同步并發(fā) - <NSThread:>{number = 7, name = (null)}
48:53.67 2 任務結尾 - <NSThread:>{number = 7, name = (null)}

2. 在當前隊列追加異步任務沦泌,任務無序執(zhí)行,開辟多個線程

    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:0.5];
        
        dispatch_async(self.bfqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        dispatch_async(self.bfqueue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印 234必定等1部分執(zhí)行完  234無序
52:03.50 1 任務開始 - <NSThread:>{number = 5, name = (null)}
52:04.00 2 任務結尾 - <NSThread:>{number = 5, name = (null)}
52:04.51 4 異步并發(fā) - <NSThread:>{number = 7, name = (null)}
52:04.51 3 異步并發(fā) - <NSThread:>{number = 6, name = (null)}

3. 在當前隊列開啟同步串行隊列辛掠,臨界區(qū)和同步任務在當前線程順序執(zhí)行谢谦,不開辟新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_SERIAL);
    
    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:1];
        
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 同步串行 - %@",[NSThread currentThread]);
        });
        
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 同步串行 - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印   順序等待
02:38.89 1 任務開始 - <NSThread:>{number = 6, name = (null)}
02:40.40 3 同步串行 - <NSThread:>{number = 6, name = (null)}
02:40.90 4 同步串行 - <NSThread:>{number = 6, name = (null)}
02:40.90 2 任務結尾 - <NSThread:>{number = 6, name = (null)}

4. 在當前隊列開啟異步串行隊列,兩者沒有明確的先后順序(異步任務之前的代碼先執(zhí)行萝衩,后邊的誰搶到誰執(zhí)行)回挽,新隊列任務按加入順序順序執(zhí)行,開啟一個新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_SERIAL);
    
    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:1];
        
        dispatch_async(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 異步串行 - %@",[NSThread currentThread]);
            [NSThread sleepForTimeInterval:0.5];
        });
        
        dispatch_async(queue, ^{
            //[NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 異步串行 - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印
234必定等1部分結束
23無序猩谊,4必定等3結束
05:44.06 1 任務開始 - <NSThread:>{number = 6, name = (null)}
05:45.07 2 任務結尾 - <NSThread:>{number = 6, name = (null)}
05:45.57 3 異步串行 - <NSThread:>{number = 4, name = (null)}
05:46.08 4 異步串行 - <NSThread:>{number = 4, name = (null)}

5. 在當前隊列開啟同步并發(fā)隊列厅各,臨界區(qū)和同步任務在當前線程順序執(zhí)行,不開辟新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_CONCURRENT);
    
    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:1];
        
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 同步并發(fā) - %@",[NSThread currentThread]);
            [NSThread sleepForTimeInterval:0.5];
        });
        
        dispatch_sync(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 同步并發(fā) - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印 3等1 4等3  2等4
11:39.67 1 任務開始 - <NSThread:>{number = 6, name = (null)}
11:41.17 3 同步并發(fā) - <NSThread:>{number = 6, name = (null)}
11:42.18 4 同步并發(fā) - <NSThread:>{number = 6, name = (null)}
11:42.18 2 任務結尾 - <NSThread:>{number = 6, name = (null)}

6. 在當前隊列開啟異步并發(fā)隊列预柒,兩者沒有明確的先后順序(異步任務之前的代碼先執(zhí)行,后邊的誰搶到誰執(zhí)行)袁梗,新隊列任務并發(fā)執(zhí)行宜鸯,開啟多個新線程

dispatch_queue_t queue = dispatch_queue_create("NXqueue", DISPATCH_QUEUE_CONCURRENT);
    
    dispatch_async(self.bfqueue, ^{

        NSLog(@"1 任務開始 - %@",[NSThread currentThread]);
        [NSThread sleepForTimeInterval:1];
        
        dispatch_async(queue, ^{
            [NSThread sleepForTimeInterval:0.5];
            NSLog(@"3 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        dispatch_async(queue, ^{
            //[NSThread sleepForTimeInterval:0.5];
            NSLog(@"4 異步并發(fā) - %@",[NSThread currentThread]);
        });
        
        //[NSThread sleepForTimeInterval:1];
        NSLog(@"2 任務結尾 - %@",[NSThread currentThread]);
        
    });
打印
234均等待1部分執(zhí)行完畢
234互相之間無關聯,誰先搶到資源誰就調用
14:12.47 1 任務開始 - <NSThread: >{number = 4, name = (null)}
14:13.47 2 任務結尾 - <NSThread: >{number = 4, name = (null)}
14:13.47 4 異步并發(fā) - <NSThread: >{number = 6, name = (null)}
14:13.97 3 異步并發(fā) - <NSThread: >{number = 7, name = (null)}

結束:建議復制代碼自己跑跑遮怜,干看有點抽象淋袖。demo我就不傳了,就這些東西锯梁,僅供參考即碗,學習。

思考:

  1. 在什么情況下會遇到數據競爭(data race)問題陌凳;
  2. 數據競爭怎么解決剥懒;
  3. 并發(fā)隊列如何串行執(zhí)行;
  4. 什么時候會用到鎖合敦。
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
  • 序言:七十年代末初橘,一起剝皮案震驚了整個濱河市,隨后出現的幾起案子充岛,更是在濱河造成了極大的恐慌保檐,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件崔梗,死亡現場離奇詭異夜只,居然都是意外死亡,警方通過查閱死者的電腦和手機蒜魄,發(fā)現死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門扔亥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來场躯,“玉大人,你說我怎么就攤上這事砸王⊥剖ⅲ” “怎么了?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵谦铃,是天一觀的道長耘成。 經常有香客問我,道長驹闰,這世上最難降的妖魔是什么瘪菌? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮嘹朗,結果婚禮上师妙,老公的妹妹穿的比我還像新娘。我一直安慰自己屹培,他們只是感情好默穴,可當我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著褪秀,像睡著了一般蓄诽。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上媒吗,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天仑氛,我揣著相機與錄音,去河邊找鬼闸英。 笑死锯岖,一個胖子當著我的面吹牛,可吹牛的內容都是我干的甫何。 我是一名探鬼主播出吹,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼沛豌!你這毒婦竟也來了趋箩?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤加派,失蹤者是張志新(化名)和其女友劉穎叫确,沒想到半個月后,有當地人在樹林里發(fā)現了一具尸體芍锦,經...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡竹勉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現自己被綠了娄琉。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片次乓。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡吓歇,死狀恐怖,靈堂內的尸體忽然破棺而出票腰,到底是詐尸還是另有隱情城看,我是刑警寧澤,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布杏慰,位于F島的核電站测柠,受9級特大地震影響,放射性物質發(fā)生泄漏缘滥。R本人自食惡果不足惜轰胁,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望朝扼。 院中可真熱鬧赃阀,春花似錦、人聲如沸擎颖。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽搂捧。三九已至肖抱,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間异旧,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工提佣, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留吮蛹,地道東北人。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓拌屏,卻偏偏與公主長得像潮针,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子倚喂,可洞房花燭夜當晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內容

  • 多線程系列篇章計劃內容:iOS多線程編程(一) 多線程基礎[https://juejin.im/post/6890...
    賣饃工程師閱讀 161評論 0 1
  • apple官方解釋 Grand Central Dispatch (GCD) comprises language...
    自律_自強_通達閱讀 379評論 0 0
  • 這段時間的研究內容的是鎖每篷,因為實際開發(fā)中用到的比較少,文中難免會有錯誤端圈,希望能夠多多指正焦读。這篇博客的第一部分是一些...
    kikido閱讀 478評論 0 1
  • GCD筆記 總結一下多線程部分,最強大的無疑是GCD,那么先從這一塊部分講起. Dispatch Queue的種類...
    jins_1990閱讀 757評論 0 1
  • 目錄(GCD): 關鍵詞 混淆點 場景應用 總結 1. 關鍵詞 線程概念: 獨立執(zhí)行的代碼段,一個線程同時間只能執(zhí)...
    Ryan___閱讀 1,264評論 0 3