首页 > 代码库 > 为啥NSString的属性要用copy而不用retain
为啥NSString的属性要用copy而不用retain
之前学习生活中,知道NSString的属性要用copy而不用retain,但是不知道为啥,这两天我研究了一下,然后终于明白了.
具体原因是因为用copy比用retain安全,当是NSString的时候,其实用copy和retain都行,当用NSMutableString,那么就要用copy,NSMutableString的值不会被修改,而用retain的时候,NSMutableString的值会被修改,具体情况,可以看下面的代码:
#import <Foundation/Foundation.h> //协议有两种方式,第一是以ing结尾形式,第二,以delegate结尾形式 @interface person : NSObject<NSCopying> @property (nonatomic,copy)NSString * name;
person * p = [[person alloc]init]; NSMutableString * name = [[NSMutableString alloc]initWithString:@"hello"]; p.name = name; [name appendString:@" word"]; NSLog(@"%@",p.name);
打印后结果是
2014-07-05 17:08:44.170 DepthCopy[1399:303] hello Program ended with exit code: 0
再看下面用retain
#import <Foundation/Foundation.h> //协议有两种方式,第一是以ing结尾形式,第二,以delegate结尾形式 @interface person : NSObject<NSCopying> @property (nonatomic,retain)NSString * name;
person * p = [[person alloc]init]; NSMutableString * name = [[NSMutableString alloc]initWithString:@"hello"]; p.name = name; [name appendString:@" word"]; NSLog(@"%@",p.name);
打印结果是:
2014-07-05 17:13:19.531 DepthCopy[1412:303] hello word Program ended with exit code: 0
我们可以发现结果被改变了,成为了hello word;
所以,由以上代码,可以看出copy比retain安全,也就能明白为啥NSString的属性要用copy而不用retain了;
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。