码迷,mamicode.com
首页 > 移动开发 > 详细

IOS中的__block关键字简单使用

时间:2015-05-13 21:56:42      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:内存管理

/**13.__block什么时候用?**/

结论:在block里面修改局部变量的值都要用__block修饰

/**14.请教一个问题:在block里面, 对数组执行添加操作, 这个数组需要声明成 __block吗?**/

不需要声明成__block,因为testArr数组的指针并没有变(往数组里面添加对象,指针是没变的,只是指针指向的内存里面的内容变了)

/**15.block里面, NSInteger进行修改, 这个NSInteger是否需要声明成__blcok **/

NSInteger的值发生改变,则要求添加__block修饰


代码实例:

NSMutableArray *testArr =[[NSMutableArray alloc] initWithObjects:@"1",@"2", nil];
    __block NSInteger a=10;
    /**结论:在block里面修改局部变量的值都要用__block修饰**/
    void (^TestBlock)(void) = ^{
//        NSMutableArray *temArr=[[NSMutableArray alloc] init];
//        testArr=temArr;//testArr数组的指针发生改变时,testArr要添加__block修饰
        
        a=100;//a的值发生改变,则要求添加__block修饰
//        testArr不需要声明成__block,因为testArr数组的指针并没有变(往数组里面添加对象,指针是没变的,只是指针指向的内存里面的内容变了)
        [testArr addObject:[NSString stringWithFormat:@"3"]];
        NSLog(@"_block testArr :%@ a:%d", testArr,a);
        
    };
    a=0;
    TestBlock();
    
    NSLog(@"testArr :%@ a:%d", testArr,a);

运行结果:

2015-05-13 20:16:23.862 WXMovie_study[22827:1683307] _block testArr :(

    1,

    2,

    3

) a:100

2015-05-13 20:16:23.862 WXMovie_study[22827:1683307] testArr :(

    1,

    2,

    3

) a:100




IOS中的__block关键字简单使用

标签:内存管理

原文地址:http://blog.csdn.net/etmanwenhan/article/details/45697579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!