码迷,mamicode.com
首页 > 移动开发 > 详细

iOS设计模式之原型模式

时间:2016-04-26 21:11:59      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

What is the 原型模式?

原型设计模式是通过一个原型拷贝的方式快速创建一个新的对象。

拷贝分为两种:

  1. 浅拷贝(同一个地址,不同的指针)

  2. 深拷贝(不同的地址,完全的独立)

二者区别在于是否生成新的一个地址

技术分享


技术分享

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

iOS设计模式之原型模式

标签:

原文地址:http://blog.csdn.net/it_ds/article/details/51235531

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!