What is the 原型模式?
原型设计模式是通过一个原型拷贝的方式快速创建一个新的对象。
拷贝分为两种:
- 浅拷贝(同一个地址,不同的指针)
- 深拷贝(不同的地址,完全的独立)
二者区别在于是否生成新的一个地址
When using the 原型模型?
- 需要创建的对象应独立于其类型与创建方式。
- 要实例化的类是在运行时决定的。
- 不想要与产品层次相对应的工厂层次。
- 不同类的实例间的差异仅仅是状态的若干组合。因此复制相应数量的原型比手工实例化更加方便。
- 类不容易创建,比如每个组件可把其他组件作为子节点的组合对象。复制已有的组合对象并对副本进行修改会更加容易。
Example:
#import <Foundation/Foundation.h>
@interface MyClass : NSObject<NSCopying>
@end
#import "MyClass.h"
@implementation MyClass
-(id)copyWithZone:(NSZone *)zone{
NSLog(@"调用copy方法");
MyClass *myclass=[[[self class]allocWithZone:zone]init];
return myclass;
}
@end
#import <Foundation/Foundation.h>
#import "MyClass.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSString *string=@"dddd";
NSString *stringCopy=[string copy];
NSMutableString *stringMCopy=[string mutableCopy];
NSLog(@"%p,%p,%p",string,stringCopy,stringMCopy);
MyClass *class1=[[MyClass alloc]init];
MyClass *class2=[class1 copy];
MyClass *class3=class2;
NSLog(@"class1:%p,class2:%p,class3:%p",class1,class2,class3);
}
return 0;
}
2016-04-24 20:07:01.445 Copy[4184:193787] string:0x100001060,stringCopy:0x100001060,stringMCopy:0x100203930
2016-04-24 20:07:01.446 Copy[4184:193787] 调用copy方法
2016-04-24 20:07:01.446 Copy[4184:193787] class1:0x100303a80,class2:0x100305ba0,class3:0x100305ba0
Program ended with exit code: 0
时间: 2024-10-07 09:38:37