iOS开发那些事儿(五)Objective-C浅拷贝与深拷贝
- 浅拷贝:copy操作出来的对象指针直接指向模板的地址。即两个对象公用一块内存地址
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSString * testStr = @"connor";
NSLog(@"testStr's Address = %p",testStr); NSString * testStrCopy = [testStr copy];
NSLog(@"testStrCopy Address = %p",testStrCopy); NSArray * array = @[@,@,@];
NSLog(@"array Address = %p",array); NSArray * copyArray = [array copy];
NSLog(@"copyArray Address = %p",copyArray);
}
return ;
}输出结果如下:
DataStruct[11210:2189074] testStr's Address = 0x100004280
DataStruct[11210:2189074] testStrCopy Address = 0x100004280
DataStruct[11210:2189074] array Address = 0x100300650
DataStruct[11210:2189074] copyArray Address = 0x100300650
- 深拷贝:copy操作出来的对象指针直接指向新开辟的内存。即持有原对象的拷贝副本
#import <Foundation/Foundation.h>
#import "Father.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSString * test = @"a";
NSLog(@"%p",test); NSString * testCopy = [test mutableCopy];
NSLog(@"%p",testCopy);
}
return ;
}输出结果如下:
DataStruct[11355:2249168] 0x100004280
DataStruct[11355:2249168] 0x100203cf0
- Foundation总结大致如下:
- NS*类型的类调用Copy属于浅拷贝(例如NSString、NSArray等等)
- NS*类型的类调用MutableCopy属于深拷贝(例如NSString、NSArray等等)
- NSMutable*类型无论调用Copy或者MutableCopy都属于深拷贝
- 拷贝构造:以上我们谈的都是Foundation中用到的深浅拷贝,如果我们自己定义了一个类。怎么去实现它的深浅拷贝呢?这里就要用到拷贝构造方法。iOS中默认NSObject是不遵循NSCopying(不变副本)、NSMutableCopying(可变副本)的,所以如果想一个对象可Copy,就必须实现其中两个协议并且重写copyWithZone、mutableCopyWithZone方法。
- 下面我们定义一个Father类,来实现深拷贝:
/** .h */
#import <Foundation/Foundation.h>
@interface Father : NSObject<NSCopying>
@property(nonatomic,copy)NSString * name;
@end /** .m */
#import "Father.h" @implementation Father
-(id)copyWithZone:(NSZone *)zone{
Father * copyFather = [[self class]allocWithZone:zone];
return copyFather;
}
@end写好了Father类我们在外界就可以利用copy的方法去copy出一个Father对象
#import <Foundation/Foundation.h>
#import "Father.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
Father * fatherA = [[Father alloc]init];
fatherA.name = @"connor";
NSLog(@"%p",fatherA); Father * fatherB = [fatherA copy];
NSLog(@"%@",fatherB.name);
NSLog(@"%p",fatherB);
}
return ;
}输出结果:
DataStruct[11383:2256524] 0x100206c80
DataStruct[11383:2256524] (null)
DataStruct[11383:2256524] 0x100300600
从输出结果来看,两个Father实例的内存地址是不一样的我们实现了深拷贝。但是为什么第二个Father没有名字?在拷贝过程过虽然我是从你FatherA拷贝过来的,但是你并没有指定FatherA中的属性到底是什么方式拷贝过来。所以这里面如果想要实现名字也拷贝过来,需要我们自己去定义到底是深拷贝过来还是浅拷贝过来。这也符合苹果做事的风格嘛。
#import "Father.h"
//添加name的浅拷贝
@implementation Father
-(id)copyWithZone:(NSZone *)zone{
Father * copyFather = [[self class]allocWithZone:zone];
copyFather.name = [self.name copy]; //如果想要深拷贝过来直接mutableCopy即可
return copyFather;
}
@end结果输出两个name的内存地址:
DataStruct[11409:2261412] 0x100004290
DataStruct[11409:2261412] 0x100004290
- 现在情况改变了,Father平时出门需要开车。Father需要持有Car类。那这个时候我们要如果复制这个爸爸!(因为复制出来的Father不能和之前那个Father开一辆车,所以我们应该用深拷贝。过程很简单直接贴代码了!)
/** .h */
#import <Foundation/Foundation.h> @interface Car : NSObject<NSCopying>
@property(nonatomic,copy)NSString * brand;
@end /** .m */
@implementation Car
-(id)copyWithZone:(NSZone *)zone{
Car * copyCar = [[self class]allocWithZone:zone];
copyCar.brand = [self.brand mutableCopy];
return copyCar;
}
@endCar
/** .h */
#import <Foundation/Foundation.h>
#import "Car.h"
@interface Father : NSObject<NSCopying>
@property(nonatomic,copy)NSString * name;
@property(nonatomic,strong)Car * car;
@end /** .m */
#import "Father.h" @implementation Father
-(id)copyWithZone:(NSZone *)zone{
Father * copyFather = [[self class]allocWithZone:zone];
copyFather.name = [self.name copy];
copyFather.car = [self.car copy];
return copyFather;
}
@endFather
#import <Foundation/Foundation.h>
#import "Father.h"
#import "Car.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
Father * fatherA = [[Father alloc]init];
fatherA.car = [[Car alloc]init];
NSLog(@"%p",fatherA.car); Father * fatherB = [fatherA copy];
NSLog(@"%p",fatherB.car);
}
return ;
}main
输出结果:
DataStruct[11441:2268004] 0x100111f60
DataStruct[11441:2268004] 0x1001154a0
- copy这种操作如果发生在继承关系之后就有什么样的效果?或者说1.父类实现了NSCopying,子类该如果实现NSCopying。2.父类没有实现NSCopying,子类如何实现NSCopying?要接一个问题我们先看下表象是什么,然后通过表象来分析问题并解决问题。接下来我们先试着用第一种情况来看看表象:Son继承于Father
/** .h */
#import "Father.h"
@interface Son : Father
@property(nonatomic,copy)NSString * toy;
@end /** .m */
#import "Son.h"
@implementation Son
@endSon
#import <Foundation/Foundation.h>
#import "Son.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
Son * sonA = [[Son alloc]init];
sonA.name = @"connor";
sonA.toy = @"iPhone"; Son * sonB = [sonA copy]; NSLog(@"sonA's Address = %p",sonA);
NSLog(@"sonB's Address = %p",sonB); NSLog(@"sonA's name Address = %p",sonA.name);
NSLog(@"sonB's name Address = %p",sonB.name); NSLog(@"sonA's toy Address = %p",sonA.toy);
NSLog(@"sonB's toy Address = %p",sonB.toy);
}
return ;
}main
输出结果:
DataStruct[11563:2279201] sonA's Address = 0x100114bc0
DataStruct[11563:2279201] sonB's Address = 0x100111f70
DataStruct[11563:2279201] sonA's name Address = 0x100004260
DataStruct[11563:2279201] sonB's name Address = 0x726f6e6e6f6365
DataStruct[11563:2279201] sonA's toy Address = 0x100004280
DataStruct[11563:2279201] sonB's toy Address = 0x0 这个结果也在我们意料之内的嘛,Son是继承与Father类的,Father实现了Copy协议,所以这个copy协议实现会继承到子类。我的理解其实:当Son调用Copy方法的时候就将消息转发给Son抽象类,发现Son中没有实现Copt则向Father发送消息SuperSendMsg就相当于事件响应链传递一样。一直向上传递直到能被处理。**这里需要注意一点Father中 Father * copyFather = [[self class]allocWithZone:zone];这里用的是self而不是Father因为Son会走到这里来,我们不能限制死到底是谁来调用***。接下来我们继续看为什么toy是个空置,这个原因和上面说的嵌套copy有点类似。因为Father不清楚你Son的属性到底是怎么copy过来的。那么怎么修改呢?我们只要在toy中稍作修改即可
@implementation Son
-(id)copyWithZone:(NSZone *)zone{
//这句话保证父类的copy也被call到
Son * son = [super copyWithZone:zone];
son.toy = [self.toy mutableCopy];
return son;
}
@endSon
输出结果:toy成功被深拷贝
DataStruct[11606:2301994] sonA's toy Address = 0x100004288
DataStruct[11606:2301994] sonB's toy Address = 0x656e6f68506965
- 接下来我们看一下第二种情况,父类没有实现NSCopying,子类如何实现NSCopying。直接让子类去实现就好了呗。父类如果需要深拷贝的我延迟到子类去执行呗!(这里有个问题,我的Son没有继承NSCopying,但是重写CopyWithZone居然没有报错??!!)
#import "Son.h"
@implementation Son
-(id)copyWithZone:(NSZone *)zone{
// Son * son = [super copyWithZone:zone];
Son * son = [[self class] allocWithZone:zone];
son.name = [self.name mutableCopy];
son.toy = [self.toy mutableCopy];
return son;
}
@endSon
输出结果:
DataStruct[11660:2317623] sonA's Address = 0x100206e00
DataStruct[11660:2317623] sonB's Address = 0x1002040e0
DataStruct[11660:2317623] sonA's name Address = 0x100004260
DataStruct[11660:2317623] sonB's name Address = 0x726f6e6e6f6365
DataStruct[11660:2317623] sonA's toy Address = 0x100004280
DataStruct[11660:2317623] sonB's toy Address = 0x656e6f68506965
- 下面我们定义一个Father类,来实现深拷贝:
iOS开发那些事儿(五)Objective-C浅拷贝与深拷贝的更多相关文章
- 从零开始学ios开发(十五):Navigation Controllers and Table Views(中)
这篇内容我们继续上一篇的例子接着做下去,为其再添加3个table view的例子,有了之前的基础,学习下面的例子会变得很简单,很多东西都是举一反三,稍稍有些不同的内容,好了,闲话少说,开始这次的学习. ...
- iOS开发那些事儿(二)热补丁
一.热补丁作用:修复导致崩溃的错误.替换/增加方法.替换原来的界面等等 二.实现手段:JSPatch (使用Objective-C Objective-C和JavaScript jspatch桥.你可 ...
- iOS开发那些事儿(六)Git分之策略
git 分支策略 将要介绍的这个模型不会比任何一套流程内容多,每个团队成员都必须遵守,这样便于管理软件开发过程. 既分散又集中 我们使用的,且与这个分支模型配合的非常好的库,他有一个“真正”的中央仓库 ...
- iOS开发那些事儿(四)the dark arts of the Objective-C runtime
一."Black Magic":Method Swizzling 利用 Runtime 特性把一个方法的实现与另一个方法的实现进行替换,也可以用runtime的四维理解——修改Di ...
- iOS开发那些事儿(一)轮播器
前言 市面上绝大部分的APP被打开之后映入眼帘的都是一个美轮美奂的轮播器,所以能做出一个符合需求.高效的轮播器成为了一个程序员的必备技能.所以今天的这篇博客就来谈谈轮播器这个看似简单的控件其中蕴含的道 ...
- iOS开发那些事儿(三)JsonKit解析原理
json_parse_it :开始解析,字符串指针从头到尾循环 jk_parse_next_token:获取下个字符的type和length 大部分分隔符长度都是固定1 jk_parse_string ...
- iOS开发-OC语言 (五)字典
字典 主要知识点: 1.NSDictionary 类 2.NSMutableDictionary 类 3.了解NSMutableDictionary 与 NSDictionary 的继承关系 4.补充 ...
- ios开发runtime学习五:KVC以及KVO,利用runtime实现字典转模型
一:KVC和KVO的学习 #import "StatusItem.h" /* 1:总结:KVC赋值:1:setValuesForKeysWithDictionary实现原理:遍历字 ...
- ios开发网络学习五:MiMEType ,多线程下载文件思路,文件的压缩和解压缩
一:MiMEType:一般可以再百度上搜索到相应文件的MiMEType,或是利用c语言的api去获取文件的MiMEType : //对该文件发送一个异步请求,拿到文件的MIMEType - (void ...
随机推荐
- 解决 jsp:include 引用文件时出现乱码的问题
阐述问题前,先来看一下下面这张图片左侧iframe中的乱码页面: 这个就是让我纠结好一阵子的乱码截图: 这个乱码页面中是使用了<jsp:include>引用标签后出现了这个问题: 源码截图 ...
- 【组合数学:第一类斯特林数】【HDU3625】Examining the Rooms
Examining the Rooms Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Othe ...
- Java - 泛型 ( Generic )
Java - 泛型 ( Generic ) > 泛型的特点 > 解决元素存储的安全性问题 > 解决获取数据元素时,需要类型强转的问题 ...
- css权重计算
第一等:代表内联样式,如: style=””,权值为1000. 第二等:代表ID选择器,如:#content,权值为100. 第三等:代表类,伪类和属性选择器,如.content,权值为1 ...
- Unity IOC注入详细配置(MVC,WebApi)
一直想写一篇关于unity 详细的配置信息的文章,也算是自我总结吧 先介绍了unity , Unity是微软官方推荐使用的轻型的IOC框架,支持各种方式的注入 ,使用来解耦的利器. 获取unity 的 ...
- win7系统64位plsql的设置
1. Instant Client Downloads for Microsoft Windows (32-bit) 我下载的是: instantclient-basic-win32-11.2.0.1 ...
- javascript 事件代理及应用
事件代理又叫事件委托在前端发开中实际是非常有用的,说事件代理之前我们先说说事件绑定 <p onclick="test()" ></p> function t ...
- Struts2中使用Session的两种方法
在Struts2里,如果需要在Action中使用到session,可以使用下面两种方式: 通过ActionContext 类中的方法getSession得到 Action实现org.apache.st ...
- Shell学习之Shift的用法
位置参数可以用shift命令左移.比如shift 3表示原来的$4现在变成$1,原来的$5现在变成$2等等,原来的$1.$2.$3丢弃,$0不移动.不带参数的shift命令相当于shift 1 ...
- VS2010中手动重命名项目
在visual studio 中重命名项目名称的方法: 1. 重命名项目名称 2. 修改Assembly name 3. 修改Default namespace 4. 在Assembly Inform ...