工厂方法模式(Factory Method)

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

应用场景:产品的组装比较复杂。用工厂模式外部可以不关心生产过程以及产品相关的部件对象。

  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. ConcreteFactory f = new ConcreteFactory();
  12. Product product = f.CreateProduct();
  13.  
  14. Console.Read();
  15. }
  16. }
  17.  
  18.  
  19. //产品类
  20. //如果有多个类似产品,可以再定义个产品接口。
  21. public class Product
  22. {
  23. public string part1;
  24. public string part2;
  25. }
  26.  
  27. //工厂接口
  28. public interface IFactory
  29. {
  30. void CreateProduct();
  31. }
  32.  
  33. //具体工厂
  34. //一种工厂生产一种产品
  35. public class ConcreteFactory : IFactory
  36. {
  37. public Product CreateProduct()
  38. {
  39. Product product = new Product();
  40. product.part1 = "组装部件一";
  41. product.part2 = "组装部件二";
  42. return product;
  43. }
  44. }
  45. }

标签: 设计模式

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号