copy

使用copy

NSString *string = @"123";
NSString *str1 = [string copy];     // string和str1是同一个地址
NSMutableString *str2 = [string mutableCopy];    // str2 是一个新对象,和str1地址不同


NSMutableString *string = [NSMutableString string];
[string appendString:@"123"];

NSString *str1 = [string copy];     // str1 是一个新对象,和string地址不同
NSMutableString *str2 = [string mutableCopy];    // str2 是一个新对象,和string地址不同

自定义类型的copy

#import "SYXPerson.h"
1. 遵守NSCopying协议
@interface SYXPerson() 
@end

@implementation SYXPerson

2. 实现copyWithZone:方法
-(id)copyWithZone:(NSZone *)zone
{
            SYXPerson *p1 = [SYXPerson allocWithZone:zone] init];
            p1.age = self.age;
            p1.height = self.height;

           return p1;

}

@end





你可能感兴趣的:(copy)