写点什么

【愚公系列】2022 年 05 月 二十三种设计模式 (四)- 原型模式 (Prototype Pattern)

作者:愚公搬代码
  • 2022 年 5 月 04 日
  • 本文字数:3893 字

    阅读完需:约 13 分钟

前言

设计模式(Design pattern)是一套被反复使用、多数人知晓的、经过分类编目的、代码设计经验的总结。使用设计模式是为了可重用代码、让代码更容易被他人理解、保证代码可靠性。 毫无疑问,设计模式于己于他人于系统都是多赢的,设计模式使代码编制真正工程化,设计模式是软件工程的基石,如同大厦的一块块砖石一样。项目中合理的运用设计模式可以完美的解决很多问题,每种模式在现在中都有相应的原理来与之对应,每一个模式描述了一个在我们周围不断重复发生的问题,以及该问题的核心解决方案,这也是它能被广泛应用的原因。

一、原型模式(Prototype Pattern)

原型模式属于创建型模式,使用原型实例指定待创建对象的类型,并且通过复制这个原型来创建新的对象。


原型模式关注的是大量相同或相似对象的创建问题。应用原型模式就是建立一个原型,然后通过对原型来进行复制的方法,产生一个和原型相同或相似的新对象。

二、使用步骤

角色

1、抽象原型(Prototype)


声明一个克隆自身的接口,通常名为 Clone;


2、具体原型(Concrete Prototype)


实现一个克隆自身的操作,包含深拷贝和浅拷贝。


浅克隆(Shallow Clone):当原型对象被复制时,只复制它本身和其中包含的值类型的成员变量,而引用类型的成员变量并没有复制,它们只是指向同一个引用。深克隆(Deep Clone):除了对象本身被复制外,对象所包含的所有成员变量也将被复制,它们拥有不同的副本。


注:C#中的 MemberwiseClone 属于浅克隆。

示例



命名空间 PrototypePattern 包含细胞基类 Cell,它的 2 个实现类分别为:PlantCell 植物细胞类和 Animal 动物细胞类,另外包含 CloneBase 泛型基类。本案例尝试模拟细胞的分裂过程以展示原型模式在复制对象本身方面的独到之处。


[Serializable]public abstract class Cell : CloneBase<Cell> {
public int Id { get; set; }
public string Wall { get; set; }//细胞壁
public string Membrane { get; set; }//细胞膜
public string Cytoplasm { get; set; }//细胞质
public string Nucleus { get; set; }//细胞核
public Content Content { get; set; } = new Content();//细胞器
public Cell(int id, string wall, string membrane, string cytoplasm, string nucleus) { this.Id = id; this.Wall = wall; this.Membrane = membrane; this.Cytoplasm = cytoplasm; this.Nucleus = nucleus; this.Content = new Content(); }
public abstract Cell Division();
}
复制代码


抽象细胞基类 Cell,继承自 CloneBase 并定义 Division 分裂接口。


[Serializable]public class PlantCell : Cell {
public PlantCell(int id, string wall, string membrane, string cytoplasm, string nucleus) : base(id, wall, membrane, cytoplasm, nucleus) {
}
public override Cell Division() { var cell = this.MemberwiseClone() as Cell; cell.Id = RandomUtil.RandomNum(); return cell; }
}
复制代码


植物细胞类 PlantCell,细胞基类的具体实现类,标记 Serializable 特性以支持序列化的深克隆。


[Serializable]public class AnimalCell : Cell {
public AnimalCell(int id, string wall, string membrane, string cytoplasm, string nucleus) : base(id, wall, membrane, cytoplasm, nucleus) {
}
public override Cell Division() { var cell = this.MemberwiseClone() as Cell; cell.Id = RandomUtil.RandomNum(); return cell; }
}
复制代码


动物细胞类 AnimalCell,细胞基类的具体实现类,标记 Serializable 特性以支持序列化的深克隆。


[Serializable]public class Content {
public string Mitochondria { get; set; }//线粒体
public int Chloroplasts { get; set; }//叶绿体
public int EndoplasmicReticulum { get; set; }//内质网
public int GolgiBody { get; set; }//高尔基复合体
public int Ribosomes { get; set; }//核糖体
public int Centrosome { get; set; }//中心体
public int Vacuole { get; set; }//液泡
public int Lysosomes { get; set; }//溶酶体
public int Microtubule { get; set; }//微管
}
复制代码


细胞质类 Content,为细胞基类中所包含的一个对象成员。


[Serializable]public class CloneBase<T> {
public virtual T Clone() { var memoryStream = new MemoryStream(); var formatter = new BinaryFormatter(); formatter.Serialize(memoryStream, this); memoryStream.Position = 0; return (T)formatter.Deserialize(memoryStream); }
}
复制代码


克隆类 CloneBase,包含一个虚拟的 Clone 方法以支持深克隆。


public class RandomUtil {
public static int RandomNum() { return new Random().Next(1000000, 10000000); }
}
复制代码


产生细胞 Id 的工具类,从 100 万到 1000 万。


public class Program {     private static Cell _cell = null;     private const string SPLIT_BREAK = "-----------------------------------------------------";     public static void Main(string[] args) {        _cell = new PlantCell(RandomUtil.RandomNum(),                             "wall",                             "membrane",                             "cytoplasm",                             "nucleus");         var plant = _cell.Division();         Console.WriteLine($"_cell.GUID:{_cell.Id},{Environment.NewLine}plant.GUID:{plant.Id}," +                          $"{Environment.NewLine}equals:{_cell.Id == plant.Id}.");         Console.WriteLine(SPLIT_BREAK);         _cell.Content.Mitochondria = "10010101010100101010101";         Console.WriteLine($"_cell.Content.Mitochondria:{_cell.Content.Mitochondria},\r\n" +                          $"plant.Content.Mitochondria:{plant.Content.Mitochondria}," +                          $"{Environment.NewLine}equals:" +                          $"{_cell.Content.Mitochondria == plant.Content.Mitochondria}.");         Console.WriteLine(SPLIT_BREAK);         var animal = _cell.Clone();         Console.WriteLine($"_cell.GUID:{_cell.Id},{Environment.NewLine}animal.GUID:{animal.Id}," +                          $"{Environment.NewLine}equals:{_cell.Id == animal.Id}.");         Console.WriteLine(SPLIT_BREAK);         _cell.Content.Mitochondria = "01001010010100101010010";         Console.WriteLine($"_cell.Content.Mitochondria:{_cell.Content.Mitochondria},\r\n" +                          $"animal.Content.Mitochondria:{animal.Content.Mitochondria}," +                          $"{Environment.NewLine}equals:" +                          $"{_cell.Content.Mitochondria == animal.Content.Mitochondria}.");         Console.WriteLine(SPLIT_BREAK);         Console.ReadKey();    } }
复制代码


以上是调用方的代码,植物细胞实例调用了浅克隆,而动物细胞实例调用了深克隆,请仔细分析这段代码。以下是这个案例的输出结果:


_cell.GUID:6768270,plant.GUID:2028096,equals:False.-----------------------------------------------------_cell.Content.Mitochondria:10010101010100101010101,plant.Content.Mitochondria:10010101010100101010101,equals:True.-----------------------------------------------------_cell.GUID:6768270,animal.GUID:6768270,equals:True.-----------------------------------------------------_cell.Content.Mitochondria:01001010010100101010010,animal.Content.Mitochondria:10010101010100101010101,equals:False.-----------------------------------------------------
复制代码


<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1">

总结

优点

1、原型模式向客户隐藏了创建新实例的复杂性;2、原型模式允许动态增加或较少产品类;3、原型模式简化了实例的创建结构,工厂方法模式需要有一个与产品类等级结构相同的等级结构,而原型模式不需要这样;4、产品类不需要事先确定产品的等级结构,因为原型模式适用于任何的等级结构。

缺点

1、每个类必须配备一个克隆方法或继承自 CloneBase 泛型类;2、配备克隆方法需要对类的功能进行通盘考虑,这对于全新的类不是很难,但对于已有的类不一定很容易,特别当一个类引用不支持串行化的间接对象,或者引用含有循环结构的时候。

使用场景

1、 当一个系统应该独立于它的产品创建、构成和表示时;2、当要实例化的类是在运行时刻指定时,例如通过动态装载来创建一个类;3、为了避免创建一个与产品类层次平行的工厂类层次时;4、当一个类的实例只能有几个不同状态组合中的一种时。建立相应数目的原型并 Clone 它们可能比每次用合适的状态手工实例化该类更方便一些。

发布于: 刚刚阅读数: 4
用户头像

还未添加个人签名 2022.03.01 加入

该博客包括:.NET、Java、前端、IOS、Android、鸿蒙、Linux、物联网、网络安全、python、大数据等相关使用及进阶知识。查看博客过程中,如有任何问题,皆可随时沟通。

评论

发布
暂无评论
【愚公系列】2022 年 05 月 二十三种设计模式(四)-原型模式(Prototype Pattern)_5月月更_愚公搬代码_InfoQ写作社区