标签:类型 get ons readline 引用 允许 clone 有一个 image
原型模式用一个原型对象来指明所要创建的对象类型,然后用复制这个原型对象的方法来创建出更多的同类型对象。
原型模式的优点有:
原型模式的缺点有:
1 /// 创建原型 2 /// </summary> 3 public abstract class MonkeyKingPrototype 4 { 5 public string Id { get; set; } 6 7 public MonkeyKingPrototype(string id) 8 { 9 this.Id = id; 10 } 11 //克隆方法 12 public abstract MonkeyKingPrototype Clone(); 13 } 14 15 /// <summary> 16 /// 创建具体原型 17 /// </summary> 18 public class ConcretePrototype :MonkeyKingPrototype 19 { 20 public ConcretePrototype(string id) 21 : base(id) 22 { } 23 24 public override MonkeyKingPrototype Clone() 25 { 26 return (MonkeyKingPrototype)this.MemberwiseClone(); 27 } 28 }
客户端
1 Console.WriteLine("【原型模式】"); 2 Console.WriteLine(); 3 4 //原型 5 MonkeyKingPrototype prototypeMonkeyKing = new ConcretePrototype("MonkeyKing"); 6 7 //变体1 8 MonkeyKingPrototype cloneMonkeyKing = prototypeMonkeyKing.Clone() as ConcretePrototype; 9 Console.WriteLine("Clone1:\t" + cloneMonkeyKing.Id); 10 11 //变体2 12 MonkeyKingPrototype cloneMonkeyKing2 = prototypeMonkeyKing.Clone() as ConcretePrototype; 13 Console.WriteLine("Clone2:\t" + cloneMonkeyKing2.Id); 14 15 Console.ReadLine();
原型模式的类图
标签:类型 get ons readline 引用 允许 clone 有一个 image
原文地址:http://www.cnblogs.com/Andy-Li/p/7263019.html