博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
23种设计模式——Prototype模式
阅读量:5763 次
发布时间:2019-06-18

本文共 2941 字,大约阅读时间需要 9 分钟。

 Prototype模式是提供自我复制的功能。包括浅拷贝和深拷贝。

一、Prototype模式的用途

场景1:游戏场景中有很多类似的敌人,它们的技能都一样,但是随着敌人出现的位置和不同,它们的能力也不太一样。那么,可以创建一个敌人抽象类,然后对于不同能力的步兵创建不同的子类。然后,使用工厂模式让调用方依赖敌人抽象类。问题来了,如果有无数种能力不同的步兵,难道需要创建无数子类吗?还有步兵模式的初始化工作比较耗时,创建这么多步兵对象可能会浪费更多的时间。我们是不是只创建一个步兵模式,然后复制出更多的一模一样的步兵呢?复制后,只需要调整一下这些对象在地图出现的位置,或者调整一下他们的能力及其他特性即可。原型模式可以用来解决这类问题的。

场景2:在商品房销售系统中,房屋信息是基础信息。在系统运行前必须输入房屋的各种信息到系统中,这是一项枯燥的重复劳动。如果让用户重复输入房间的类型、面积和卫生间样式,这个系统肯定尚未运行就夭折了。实际上,一个小区楼盘的样式并不多,不同的只是楼号。另外,楼盘中的房间类型也非常有限,从而为解决输入问题提供了启示。所以我们可以事先创建一个楼盘模型,然后复制出更多的楼盘模型。复制后,只需要调整一下楼号等信息即可。原型模式也可以用来解决这类问题。

 

二、Portotype模式的结构

三、代码如下

Java代码

吕震宇老师的例子很容易理解,故直接引用如下:

//
 Prototype pattern -- Structural example  
using
 System;
//
 "Prototype"
abstract
 
class
 Prototype
{
  
// Fields
  private string id;
  
// Constructors
  public Prototype( string id )
  
{
    
this.id = id;
  }
  
public string Id
  
{
    
getreturn id; }
  }
  
// Methods
  abstract public Prototype Clone();
}
//
 "ConcretePrototype1"
class
 ConcretePrototype1 : Prototype
{
  
// Constructors
  public ConcretePrototype1( string id ) : base ( id ) {}
  
// Methods
  override public Prototype Clone()
  
{
    
// Shallow copy
    return (Prototype)this.MemberwiseClone();
  }
}
//
 "ConcretePrototype2"
class
 ConcretePrototype2 : Prototype
{
  
// Constructors
  public ConcretePrototype2( string id ) : base ( id ) {}
  
// Methods
  override public Prototype Clone()
  
{
    
// Shallow copy
    return (Prototype)this.MemberwiseClone();
  }
}
/**/
/// <summary>
/// Client test
/// </summary>
class
 Client
{
  
public static void Main( string[] args )
  
{
    
// Create two instances and clone each
    ConcretePrototype1 p1 = new ConcretePrototype1( "I" );
    ConcretePrototype1 c1 
= (ConcretePrototype1)p1.Clone();
    Console.WriteLine( 
"Cloned: {0}", c1.Id );
    ConcretePrototype2 p2 
= new ConcretePrototype2( "II" );
    ConcretePrototype2 c2 
= (ConcretePrototype2)p2.Clone();
    Console.WriteLine( 
"Cloned: {0}", c2.Id );
  }
}

 

C++代码

 

 
class CPrototype
{
public:
virtual ~CPrototype() { }
virtual CPrototype* Clone() = 0;
};
class CConcretePrototype1 : public CPrototype
{
public:
CConcretePrototype1()
{
printf("[CConcretePrototype1] 构造函数. \n");
}
~CConcretePrototype1()
{
printf("[CConcretePrototype1] 析构函数. \n");
}
public:
virtual CPrototype* Clone() { return new CConcretePrototype1(*this); }
private:
// 既然有Clone函数,就将复制构成函数设置为私有的
CConcretePrototype1(const CConcretePrototype1& rhs)
{
printf("[CConcretePrototype1] 复制构造函数. \n");
}
};
class CConcretePrototype2 : public CPrototype
{
public:
CConcretePrototype2()
{
printf("[CConcretePrototype2] 构造函数. \n");
}
~CConcretePrototype2()
{
printf("[CConcretePrototype2] 析构函数. \n");
}
public:
virtual CPrototype* Clone() { return new CConcretePrototype2(*this); }
private:
// 既然有Clone函数,就将复制构成函数设置为私有的
CConcretePrototype2(const CConcretePrototype2& rhs)
{
printf("[CConcretePrototype2] 复制构造函数. \n");
}
};

测试Demo代码

 
void PrototypeDemo()
{
CPrototype* pItem = new CConcretePrototype1();
CPrototype* pItem2 = pItem->Clone();
CPrototype* pItem3 = pItem->Clone();
delete pItem3;
delete pItem2;
delete pItem;
}

转:

 

你可能感兴趣的文章
gen already exists but is not a source folder. Convert to a source folder or rename it 的解决办法...
查看>>
HDOJ-2069Coin Change(母函数加强)
查看>>
遍历Map的四种方法
查看>>
IOS atomic与nonatomic,assign,copy与retain的定义和区别
查看>>
JAVA学习:maven开发环境快速搭建
查看>>
Altium Designer 小记
查看>>
【Linux高级驱动】I2C驱动框架分析
查看>>
赵雅智:js知识点汇总
查看>>
二维有序数组查找数字
查看>>
20个Linux服务器性能调优技巧
查看>>
多重影分身:一套代码如何生成多个小程序?
查看>>
Oracle将NetBeans交给了Apache基金会
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
DLA实现跨地域、跨实例的多AnalyticDB读写访问
查看>>
实时编辑
查看>>
北漂之毕业裁员后的又一波奇遇
查看>>
Python数据分析:pandas常用函数
查看>>
KVO原理分析及使用进阶
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>