objective-c - Object c里的copy属性为什么返回的对象不是深拷贝的?
伊谢尔伦
伊谢尔伦 2017-05-02 09:35:32
0
2
669

对象声明为

@interface MyClass : NSObject
@property (atomic, copy) NSMutableString *name;
@end

定义为

@implementation MyClass
@synthesize name;
@end

调用

MyClass *m = [[MyClass alloc] init];
NSMutableString *s = [[NSMutableString alloc] initWithString:@"Hello"];
[m setName:s];
NSLog(@"%p", [m name]);
NSLog(@"%p", [m name]);
NSLog(@"%p", [m name]);

如果说copy每次返回的对象对于可变字符串都是深拷贝的话,为什么打印的地址是一样的?

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

reply all(2)
过去多啦不再A梦

copy是指在赋值的时候进行一次copy操作,你可以再尝试打印下s的地址,
ps: mutable类型的属性别用copy

洪涛

Uh-huh. . You printed the same address three times, how can you change it?

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template