Objective-C中strong和copy区别
在Objective-C开发中,我们经常使用strong和copy属性修饰符,对于NSString来说两者效果相同,而对于NSMutableString来说,两者含义不同。我们可以通过代码验证下。
NSString
@property (nonatomic, strong) NSString *strongString;
@property (nonatomic, copy) NSString *copiedString;
@property (nonatomic, strong) NSMutableString *strongMutableString;
@property (nonatomic, copy) NSMutableString *copiedMutableString;
在类的属性中,我们增加以上几个属性,strong和copy修饰的NSString,strong和copy修饰的NSMutableString。
NSString *string = [NSString stringWithFormat:@"hello string, hello world!"];
self.strongString = string;
self.copiedString = string;
NSLog(@"%p", string);
NSLog(@"%p", self.strongString);
NSLog(@"%p", self.copiedString);
生成一个NSString实例并且赋值,把string分别赋值给copiedString和strongString。运行程序后,可以发现三者的内存地址是相同的。这里%p即打印实例的地址。
iOSProject[71752:7608123] 0x600000164f00
iOSProject[71752:7608123] 0x600000164f00
iOSProject[71752:7608123] 0x600000164f00
三者内存地址相同,说明对于NSString来说strong和copy的作用是相同的。
NSMutableString
NSMutableString *mutableString = [[NSMutableString alloc] initWithFormat:@"hello mutableString, hello world!"];
self.strongMutableString = mutableString;
self.copiedMutableString = mutableString;
NSLog(@"%p", mutableString);
NSLog(@"%p", self.strongMutableString);
NSLog(@"%p", self.copiedMutableString);
写入NSMutableString代码,并且把mutableString分别赋值给strongMutableString和copiedMutableString,运行程序后三者内存地址不完全相同。mutableString和strongMutableString是相同的内存地址,而copiedMutableString是不同的内存地址,copiedMutableString在赋值过程过程中发生了拷贝。
iOSProject[71842:7610995] 0x600002e0f330
iOSProject[71842:7610995] 0x600002e0f330
iOSProject[71842:7610995] 0x60000350d580
[mutableString replaceOccurrencesOfString:@", hello world!" withString:@"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, mutableString.length)];
NSLog(@"%@", mutableString);
NSLog(@"%@", self.strongMutableString);
NSLog(@"%@", self.copiedMutableString);
修改代码,把mutableString的字符串内容做替换,再打印三个实例对象的取值,可以发现
mutableString值发生改变,strongMutableString的值也发生了改变。copiedMutableString并没有发生改变,因为它指向的是另外一块内存地址。
iOSProject[71842:7610995] hello mutableString
iOSProject[71842:7610995] hello mutableString
iOSProject[71842:7610995] hello mutableString, hello world!
总结
对于NSString来说,strong和copy的作用相同,都是让属性指向同一块内存。
对于NSMutableString来说,strong指向的是同一块内存,而copy指向的是新生成的内存。
在实际的开发中,NSString也可以指向NSMutableString,如果不想修改原来的内存,这个时候可以使用copy修饰属性。