block 的 copy 以及 block 使用外部變量

最近在想,block 被 copy 之后內(nèi)存會有什么變化,block 里面使用的外部變量為什么不會被銷毀的問題,目前總結(jié)如下凝颇。

太長不看版
1.block 被 copy 的時(shí)候,block 會被從棧(stack)中移到堆(heap)中疹鳄,內(nèi)存地址 MRC 下變化
2.block 里面使用的外部變量(OC 對象)會被 retain 一次拧略,所有 block 執(zhí)行結(jié)束之前,外部變量不會被銷毀
3.block 里面使用的外部變量都是“只讀”的瘪弓,想要修改垫蛆,需要修改變量類型為“__block”

- (instancetype)init {
    if (self = [super init]) {
        UIButton *button = [UIButton buttonWithType:UIButtonTypeContactAdd];
        button.frame = CGRectMake(100, 100, 100, 100);
        NSLog(@"打印的是 block 定義時(shí)候 block 外面 button 的地址 ***** %p", button);
        NSLog(@"button retainCount %zd", button.retainCount); // retainCount = 1
        
        void(^tempBlock)() = ^(void) {
            //相當(dāng)于 button 在這里 retain
            NSLog(@"這是定義 block 的地方 打印的是 block 里面 button 的地址 ***** %s -- %p", __func__, button);
            NSLog(@"button retainCount %zd", button.retainCount); // retainCount = 1
            NSLog(@"back");
        };
        NSLog(@"%@", tempBlock);
        self.viewControllerTestBlock = tempBlock;
        NSLog(@"button retainCount %zd", button.retainCount); // retainCount = 2
    } // button retainCount = 1
    
    return self;
}

block 被 copy 的時(shí)候,block 會被從棧(stack)中移到堆(heap)中腺怯,關(guān)于 block 從 stack 到 heap 地址變化如下(MRC)(但是 ARC 下是沒有變化的)

2016-03-24 02:03:05.680 BlockCircle_01[3722:428943] <NSStackBlock: 0x7fff52e65ac8>
2016-03-24 02:03:05.681 BlockCircle_01[3722:428943] <NSMallocBlock: 0x7f9110c4dd30>

block 中使用的 block 外部的局部變量袱饭,如果是 OC 對象,這個(gè) OC 對象是會 retain 一次的呛占,MRC 下可以打印出來這個(gè) OC 對象的 retainCount虑乖,關(guān)于 button 引用計(jì)數(shù)如下(MRC)

2016-03-24 01:37:52.567 BlockCircle_01[3337:406242] 定義 button 時(shí)候 retainCount 1
2016-03-24 01:37:52.568 BlockCircle_01[3337:406242] 定義 button 所在方法將要結(jié)束時(shí)候 retainCount 2
2016-03-24 01:37:55.635 BlockCircle_01[3337:406242] block 使用 button retainCount 1
但是,這些局部變量在 block 中只是 read 的晾虑,不可以修改這些局部變量的值疹味,如果想要修改,需要在外面把這些變量改成 __block 類型的帜篇。


文檔里面一些資料

Block objects are a C-level syntactic and runtime feature. They are similar to standard C functions, but in addition to executable code they may also contain variable bindings to automatic (stack) or managed (heap) memory. A block can therefore maintain a set of state (data) that it can use to impact behavior when executed.
You can use blocks to compose function expressions that can be passed to API, optionally stored, and used by multiple threads. Blocks are particularly useful as a callback because the block carries both the code to be executed on callback and the data needed during that execution.

Blocks are particularly useful as a callback because the block carries both the code to be executed on callback and the data needed during that execution.
Blocks 作為回調(diào)函數(shù)使用的時(shí)候會更有效糙捺,因?yàn)?block 不但存儲了函數(shù)部分,同時(shí)執(zhí)行時(shí)候需要的數(shù)據(jù)也被存儲了下來笙隙。

Can continue to share and modify state defined within the lexical scope (the stack frame) after the lexical scope (the stack frame) has been destroyed

詞法范圍內(nèi)定義的變量洪灯,如果在 block 中使用,當(dāng) block 被 copy 的時(shí)候竟痰,會被放到堆(heap)中签钩,在棧中局部變量銷毀的時(shí)候,還是可以使用這些變量

Typically, you shouldn't need to copy (or retain) a block. You only need to make a copy when you expect the block to be used after destruction of the scope within which it was declared. Copying moves a block to the heap.

一般情況下凯亮,block 是不需要被 copy 的边臼,除非你希望在這個(gè) block 聲明的詞法范圍被銷毀之后哄尔,仍舊可以調(diào)用這個(gè) block假消,copy 會把 block 移到堆(heap)中。


還有一個(gè)問題岭接,文檔在說 OC 對象和 block 關(guān)系的時(shí)候富拗,說是“通過引用”和“通過值”臼予,是不一樣的,如果“通過引用”使用 OC 對象啃沪,就會對 self 有一個(gè)強(qiáng)引用粘拾,這樣是不是就有可能造成循環(huán)引用,但是创千,程序運(yùn)行是沒有問題的缰雇,代碼放在最下面了。

Objective-C Objects
When a block is copied, it creates strong references to object variables used within the block. If you use a block within the implementation of a method:
If you access an instance variable by reference, a strong reference is made to self;
If you access an instance variable by value, a strong reference is made to the variable.
The following examples illustrate the two different situations:

dispatch_async(queue, ^{
    // instanceVariable is used by reference, a strong reference is made to self
    doSomethingWithObject(instanceVariable);
});
id localVariable = instanceVariable;
dispatch_async(queue, ^{
    /*
      localVariable is used by value, a strong reference is made to localVariable
      (and not to self).
    */
    doSomethingWithObject(localVariable);
});

To override this behavior for a particular object variable, you can mark it with the __block storage type modifier.

- (IBAction)btnDidClick {
    __block SXView *smallView = [[SXView alloc] initWithFrame:CGRectMake(([UIScreen mainScreen].bounds.size.width - 200) * 0.5, ([UIScreen mainScreen].bounds.size.height - 200) * 0.5, 200, 200)];
    smallView.backgroundColor = [UIColor yellowColor];
    [self.view addSubview:smallView];
    NSLog(@"smallView ----- %p", smallView);
    
    __weak typeof(self) weakSelf = self;
    self.sxViewControllerTestBlock = ^(void) {
        weakSelf.view.backgroundColor = [UIColor brownColor];
        smallView.backgroundColor = [UIColor purpleColor];
        NSLog(@"smallView inside ----- %p", smallView);
    };
    
    ViewController *nextViewcontroller = [[ViewController alloc] init];
    nextViewcontroller.viewControllerTestBlock = self.sxViewControllerTestBlock;
    // presentViewController works like modal(from bottom)
    //    [self presentViewController:nextViewcontroller animated:YES completion:nil];
    [self.navigationController pushViewController:nextViewcontroller animated:YES];
}

- (void)dealloc {
    NSLog(@"***** %@ dealloc *****", [self class]);
}

對 smallView 引用追驴,但是械哟,控制器 pop 之后,還是正常銷毀了殿雪,沒有發(fā)生內(nèi)存泄露問題暇咆。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市丙曙,隨后出現(xiàn)的幾起案子爸业,更是在濱河造成了極大的恐慌,老刑警劉巖亏镰,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件扯旷,死亡現(xiàn)場離奇詭異,居然都是意外死亡拆挥,警方通過查閱死者的電腦和手機(jī)薄霜,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來纸兔,“玉大人惰瓜,你說我怎么就攤上這事『嚎螅” “怎么了崎坊?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長洲拇。 經(jīng)常有香客問我奈揍,道長,這世上最難降的妖魔是什么赋续? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任男翰,我火速辦了婚禮,結(jié)果婚禮上纽乱,老公的妹妹穿的比我還像新娘蛾绎。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布租冠。 她就那樣靜靜地躺著鹏倘,像睡著了一般。 火紅的嫁衣襯著肌膚如雪顽爹。 梳的紋絲不亂的頭發(fā)上纤泵,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天,我揣著相機(jī)與錄音镜粤,去河邊找鬼捏题。 笑死,一個(gè)胖子當(dāng)著我的面吹牛肉渴,可吹牛的內(nèi)容都是我干的涉馅。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼黄虱,長吁一口氣:“原來是場噩夢啊……” “哼稚矿!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起捻浦,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤晤揣,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后朱灿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體昧识,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年盗扒,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了跪楞。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡侣灶,死狀恐怖甸祭,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情褥影,我是刑警寧澤池户,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站凡怎,受9級特大地震影響校焦,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜统倒,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一寨典、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧房匆,春花似錦耸成、人聲如沸注暗。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至赚楚,卻和暖如春毙沾,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背宠页。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工左胞, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人举户。 一個(gè)月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓烤宙,卻偏偏與公主長得像,于是被迫代替她去往敵國和親俭嘁。 傳聞我的和親對象是個(gè)殘疾皇子躺枕,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容