原型模式(Prototype)

作者:追风剑情 发布于:2016-6-15 14:09 分类:设计模式

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace PrototypeTest
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. ConcretePrototype obj = new ConcretePrototype();
  12. obj.Name = "aaa";
  13.  
  14. ConcretePrototype obj1 = (ConcretePrototype)obj.Clone();
  15. Console.WriteLine(obj1.Name);
  16.  
  17. Console.Read();
  18. }
  19. }
  20.  
  21. //Clone接口声明
  22. public interface ICloneable
  23. {
  24. Object Clone();
  25. }
  26.  
  27. //原型类
  28. public abstract class Prototype : ICloneable
  29. {
  30. public abstract Object Clone();
  31. }
  32.  
  33. //具体实现类
  34. public class ConcretePrototype : Prototype
  35. {
  36. public string Name;
  37.  
  38. public override Object Clone()
  39. {
  40. ConcretePrototype obj = new ConcretePrototype();
  41. obj.Name = Name;
  42. return obj;
  43. }
  44. }
  45. }

运行测试

111111.png

标签: 设计模式

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号