數(shù)組深復(fù)制淺復(fù)制(方便閱讀)

一:數(shù)組的copy和mutableCopy:

@interface GYJTest : NSObject
@property(nonatomic,copy)NSString *str;
@property(nonatomic,assign)int age;
@end
@implementation GYJTest
@end
- (void)viewDidLoad{
    GYJTest *test = [[GYJTest alloc]init];
    test.str = [NSString stringWithFormat:@"%ld",1837891291834223121];
    test.age=10;
    NSArray*arr2 =@[test];
    NSArray*arr3 = arr2.copy;
    NSArray*arr4 = arr2.mutableCopy;
    NSLog(@"%p",test);
    NSLog(@"%p",arr2);
    NSLog(@"%p",arr3);
    NSLog(@"%p",arr4);
    NSLog(@"%p",arr3[0]);
    NSLog(@"%p",arr4[0]);
}
image

打印結(jié)果:

image

結(jié)論:

1.單純的數(shù)組copy,只是指針復(fù)制,對其中一個(gè)數(shù)組進(jìn)行修改,另一個(gè)也會跟著變動(dòng)

2.數(shù)組的mutableCopy,屬于深復(fù)制,會開辟數(shù)組的堆空間,但是僅限容器的復(fù)制,而容器內(nèi)存儲的指針數(shù)值保持不動(dòng),如果對元素的內(nèi)容進(jìn)行修改,兩個(gè)數(shù)組內(nèi)容都會跟著變動(dòng)

二:那么如果要保證數(shù)組內(nèi)容的完整的復(fù)制,包括數(shù)組元素的深復(fù)制,有兩種方式

A.調(diào)用[[NSMutableArray alloc]initWithArray:arr copyItems:YES]函數(shù)進(jìn)行復(fù)制,該函數(shù)會繼續(xù)調(diào)用元素的NSCopying協(xié)議的- (id)copyWithZone:(nullable NSZone *)zone方法,人為的修改元素的復(fù)制內(nèi)容,以達(dá)到深復(fù)制的目的,元素CCModel的copying協(xié)議按NSMutableCopying方式寫,然后CCModel的嵌套層按正常的NSMutableCopying寫,如下:


@interface CCModel : NSObject<NSCopying>
@property(nonatomic,assign)int count;
@property(nonatomic,strong)Person *per;
@end
@interface Person : NSObject<NSMutableCopying>
@property(nonatomic,copy)NSString *name;
@property(nonatomic,strong)Student *stu;
@end
@interface Student : NSObject<NSMutableCopying>
@property(nonatomic,assign)int score;
@property(nonatomic,copy)NSString *numString;
@end
@implementation CCModel
- (id)copyWithZone:(nullable NSZone *)zone{
    CCModel *model = [[CCModel alloc]init];
    model.count=self.count;
    model.per = self.per.mutableCopy;
    return  model;
}
@end
@implementation Person
- (id)mutableCopyWithZone:(nullable NSZone *)zone{
    Person *model = [[Person alloc]init];
    model.name = self.name.mutableCopy;
    model.stu = self.stu.mutableCopy;
    return  model;
}
@end
@implementation Student
- (id)mutableCopyWithZone:(nullable NSZone *)zone{
    Student *model = [[Student alloc]init];
    model.score=self.score;
    model.numString = self.numString.mutableCopy;
    return  model;
}
@end

驗(yàn)證代碼:

    Student *stu = [[Student alloc]init];
    stu.score=90;
    stu.numString = @"2030221134";

    Person *per = [[Person alloc]init];
    per.name=@"tom";
    per.stu= stu;

    CCModel *model = [[CCModel alloc]init];
    model.per= per;
    model.count=1;
    NSArray*arr =@[model];

    NSMutableArray *arr1 = [[NSMutableArray alloc]initWithArray:arr copyItems:YES];
    NSLog(@"ccmodel:%p",model);
    NSLog(@"ccmodel.per:%p",model.per);
    NSLog(@"ccmodel.per.stu:%p",model.per.stu);
    CCModel*copyModel = arr1.firstObject;
    NSLog(@"copyModel:%p",copyModel);
    NSLog(@"copyModel.per:%p",copyModel.per);
    NSLog(@"copyModel.per.stu:%p",copyModel.per.stu);

打印效果:

image

從結(jié)果標(biāo)明,通過這種方式可以達(dá)到對元素的深復(fù)制效果,就是需要注意CCModel對象以后可別調(diào)用model.copy,那可是完全的深復(fù)制,完全是兩個(gè)對象了.

B.第二種方式,序列化操作通過實(shí)現(xiàn)NSCoding協(xié)議,調(diào)用序列化方法,深復(fù)制一個(gè)內(nèi)容出來

NSArray*arr =@[model];
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:arr];
NSArray *deepCopyArr = [NSKeyedUnarchiver unarchiveObjectWithData:data];

寫法:

@interface CCModel : NSObject<NSCoding>
@property(nonatomic,assign)int count;
@property(nonatomic,strong)Person *per;
@end

@interface Person : NSObject<NSCoding>
@property(nonatomic,copy)NSString *name;
@property(nonatomic,strong)Student *stu;
@end

@interface Student : NSObject<NSCoding>
@property(nonatomic,assign)int score;
@property(nonatomic,copy)NSString *numString;
@end

#import  "CCModel.h"
#import <objc/runtime.h>

void encodeWithCoder(NSCoder *coder,id instance){
    unsigned int count =0;
    Ivar *ivars =class_copyIvarList([instance class], &count);
    for(int i = 0; i < count; i++){
        Ivar ivar = ivars[i];
        const char *cKey = ivar_getName(ivar);
        NSString *key = [NSString stringWithCString:cKey encoding:NSUTF8StringEncoding];
        id value = [instance valueForKey:key];
        [coder encodeObject:value forKey:key];
    }
    free(ivars);
}
void createInstanceByCoder(NSCoder *coder,id instance){
    unsigned int count =0;
    Ivar*ivars = class_copyIvarList([instance class], &count);
    for(int i = 0; i < count; i++){
        Ivar ivar = ivars[i];
        const char*cKey = ivar_getName(ivar);
        NSString *key = [NSString stringWithCString:cKey encoding:NSUTF8StringEncoding];
        id value = [coder decodeObjectForKey:key];
        [instance setValue:value forKey:key];
    }
    free(ivars);
}
@implementation CCModel
- (void)encodeWithCoder:(NSCoder *)coder{
    encodeWithCoder(coder,self);
}
- (instancetype)initWithCoder:(NSCoder *)coder{
    if (self = [super init]){
        createInstanceByCoder(coder,self);
    }
    return self;
}
@end
@implementation Person
- (void)encodeWithCoder:(NSCoder *)coder{
    encodeWithCoder(coder,self);
}
- (instancetype)initWithCoder:(NSCoder *)coder{
    if (self = [super init]){
        createInstanceByCoder(coder,self);
    }
    return self;
}
@end
@implementation Student
- (void)encodeWithCoder:(NSCoder *)coder{
    encodeWithCoder(coder,self);
}
- (instancetype)initWithCoder:(NSCoder *)coder{
    if (self = [super init]){
        createInstanceByCoder(coder,self);
    }
    return self;
}
@end

驗(yàn)證效果


   Student *stu = [[Student alloc]init];
    stu.score=90;
    stu.numString = @"2030221134";

    Person *per = [[Person alloc]init];
    per.name=@"tom";
    per.stu= stu;

    CCModel *model = [[CCModel alloc]init];
    model.per= per;
    model.count=1;

    NSArray*arr =@[model];
    NSData *data = [NSKeyedArchiver archivedDataWithRootObject:arr];
    NSArray *deepCopyArr = [NSKeyedUnarchiver unarchiveObjectWithData:data];
    NSLog(@"ccmodel:%p",model);
    NSLog(@"ccmodel.per:%p",model.per);
    NSLog(@"ccmodel.per.stu:%p",model.per.stu);

    CCModel*copyModel = deepCopyArr.firstObject;
    NSLog(@"copyModel:%p",copyModel);
    NSLog(@"copyModel.per:%p",copyModel.per);
    NSLog(@"copyModel.per.stu:%p",copyModel.per.stu);

打印結(jié)果顯示:數(shù)組元素及元素嵌套的內(nèi)容都不是同一個(gè)對象,達(dá)到了深復(fù)制的目的

image
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市肘习,隨后出現(xiàn)的幾起案子幸缕,更是在濱河造成了極大的恐慌蛀恩,老刑警劉巖祠斧,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件哈扮,死亡現(xiàn)場離奇詭異瘸洛,居然都是意外死亡猫十,警方通過查閱死者的電腦和手機(jī)览濒,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來炫彩,“玉大人匾七,你說我怎么就攤上這事〗ぃ” “怎么了昨忆?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長杉允。 經(jīng)常有香客問我邑贴,道長,這世上最難降的妖魔是什么叔磷? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任拢驾,我火速辦了婚禮,結(jié)果婚禮上改基,老公的妹妹穿的比我還像新娘繁疤。我一直安慰自己,他們只是感情好秕狰,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布稠腊。 她就那樣靜靜地躺著,像睡著了一般鸣哀。 火紅的嫁衣襯著肌膚如雪架忌。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天我衬,我揣著相機(jī)與錄音叹放,去河邊找鬼。 笑死挠羔,一個(gè)胖子當(dāng)著我的面吹牛井仰,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播破加,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼俱恶,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起速那,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎尿背,沒想到半個(gè)月后端仰,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡田藐,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年荔烧,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片汽久。...
    茶點(diǎn)故事閱讀 38,100評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡鹤竭,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出景醇,到底是詐尸還是另有隱情臀稚,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布三痰,位于F島的核電站吧寺,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏散劫。R本人自食惡果不足惜稚机,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望获搏。 院中可真熱鬧赖条,春花似錦、人聲如沸常熙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽症概。三九已至蕾额,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間彼城,已是汗流浹背诅蝶。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留募壕,地道東北人调炬。 一個(gè)月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像舱馅,于是被迫代替她去往敵國和親缰泡。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容