抽象工厂模式(Abstract Factory)

作者:追风剑情 发布于:2016-6-17 17:41 分类:设计模式

应用场景:创建产品簇

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace FactoryTest
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. ConcreteFactoryA fA = new ConcreteFactoryA();
  12. ConcreteFactoryB fB = new ConcreteFactoryB();
  13.  
  14. IProduct pA1 = fA.CreateProduct1();
  15. IProduct pA2 = fA.CreateProduct2();
  16.  
  17. IProduct pB1 = fB.CreateProduct1();
  18. IProduct pB2 = fB.CreateProduct2();
  19.  
  20. Console.Read();
  21. }
  22. }
  23.  
  24. public class IProduct
  25. {
  26. void Show();
  27. }
  28.  
  29.  
  30. //A类产品
  31. public class ProductA1 : IProduct
  32. {
  33. public void Show(){}
  34. }
  35.  
  36. public class ProductA2 : IProduct
  37. {
  38. public void Show() { }
  39. }
  40.  
  41. //B类产品
  42. public class ProductB1 : IProduct
  43. {
  44. public void Show(){}
  45. }
  46.  
  47. public class ProductB2 : IProduct
  48. {
  49. public void Show() { }
  50. }
  51.  
  52. //工厂接口
  53. public interface IFactory
  54. {
  55. void CreateProduct1();
  56. void CreateProduct2();
  57. }
  58.  
  59. //具体工厂
  60. //一种工厂生产一类产品
  61. public class ConcreteFactoryA : IFactory
  62. {
  63. public IProduct CreateProduct1()
  64. {
  65. return new ProductA1();
  66. }
  67.  
  68. public IProduct CreateProduct2()
  69. {
  70. return new ProductA2();
  71. }
  72. }
  73.  
  74. public class ConcreteFactoryB : IFactory
  75. {
  76. public IProduct CreateProduct1()
  77. {
  78. return new ProductB1();
  79. }
  80.  
  81. public IProduct CreateProduct2()
  82. {
  83. return new ProductB2();
  84. }
  85. }
  86. }

标签: 设计模式

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号