当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP设计模式之工厂方法设计模式实例分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-12 15:10:28 浏览: 评论:0 

本文实例讲述了PHP设计模式之工厂方法设计模式。分享给大家供大家参考,具体如下:

一、什么是工厂方法模式

作为一种创建型设计模式,工厂方法模式就是要创建“某种东西”。对于工厂方法,要创建的“东西”是一个产品,这个产品与创建它的类之间不存在绑定。实际上,为了保持这种松耦合,客户会通过一个工厂发出请求,再由工厂创建所请求的产品。利用工厂方法模式,请求者只发出请求,而不具体创建产品。

二、什么时候使用工厂方法模式

如果实例化对象的子类可能改变,就要使用工厂方法模式。

三、一般工厂方法模式

使用一般工厂方法模式时,客户只包含工厂的引用,一个工厂生产一种产品。增加一种产品的同时需要增加一个新工厂类和一个新产品类。

  1. <?php 
  2. /** 
  3. *  一般工厂方法设计模式 
  4. **/ 
  5. //工厂抽象类 
  6. abstract class Factory 
  7.   protected abstract function produce(); 
  8.   public function startFactory() 
  9.   { 
  10.     $pro = $this->produce(); 
  11.     return $pro
  12.   } 
  13. //文本工厂 
  14. class TextFactory extends Factory 
  15.   protected function produce() 
  16.   { 
  17.     $textProduct = new TextProduct(); 
  18.     return $textProduct->getProperties(); 
  19.   } 
  20. //图像工厂 
  21. class ImageFactory extends Factory 
  22.   protected function produce() 
  23.   { 
  24.     $imageProduct = new ImageProduct(); 
  25.     return $imageProduct->getProperties(); 
  26.   } 
  27. //产品类接口 
  28. interface Product 
  29.   public function getProperties(); 
  30. //文本产品 
  31. class TextProduct implements Product 
  32.   private $text
  33.   function getProperties() 
  34.   { 
  35.     $this->text = "此处为文本"
  36.     return $this->text; 
  37.   } 
  38. //图像产品 
  39. class ImageProduct implements Product 
  40.   private $image
  41.   function getProperties() 
  42.   { 
  43.     $this->image = "此处为图像"
  44.     return $this->image; 
  45.   } 
  46. //客户类 
  47. class Client 
  48.   private $textFactory
  49.   private $imageFactory
  50.   public function __construct() 
  51.   { 
  52.     $this->textFactory = new TextFactory(); 
  53.     echo $this->textFactory->startFactory() . '<br />'
  54.     $this->imageFactory = new ImageFactory(); 
  55.     echo $this->imageFactory->startFactory() . '<br />'
  56.   } 
  57. $client = new Client(); 
  58. /*运行结果: 
  59. 此处为文本 
  60. 此处为图像 
  61. */ 
  62. ?> 

四、参数化工厂方法模式

使用参数化工厂方法模式时,客户包含工厂和产品的引用,发出请求时需要指定产品的种类,一个工厂生产多种产品。增加一种产品时只需要增加一个新产品类即可。

  1. <?php 
  2. /** 
  3. *  参数化工厂方法设计模式 
  4. **/ 
  5. //工厂抽象类 
  6. abstract class Factory 
  7.   protected abstract function produce(Product $product); 
  8.   public function startFactory(Product $product
  9.   { 
  10.     $pro = $this->produce($product); 
  11.     return $pro
  12.   } 
  13. //工厂实现 
  14. class ConcreteFactory extends Factory 
  15.   protected function produce(Product $product
  16.   { 
  17.     return $product->getProperties(); 
  18.   } 
  19. //产品类接口 
  20. interface Product 
  21.   public function getProperties(); 
  22. //文本产品 
  23. class TextProduct implements Product 
  24.   private $text
  25.   public function getProperties() 
  26.   { 
  27.     $this->text = "此处为文本"
  28.     return $this->text; 
  29.   } 
  30. //图像产品 
  31. class ImageProduct implements Product 
  32.   private $image
  33.   public function getProperties() 
  34.   { 
  35.     $this->image = "此处为图像"
  36.     return $this->image; 
  37.   } 
  38. //客户类 
  39. class Client 
  40.   private $factory
  41.   private $textProduct
  42.   private $imageProduct
  43.   public function __construct() 
  44.   { 
  45.     $factory = new ConcreteFactory(); 
  46.     $textProduct = new TextProduct(); 
  47.     $imageProduct = new ImageProduct(); 
  48.     echo $factory->startFactory($textProduct) . '<br />'
  49.     echo $factory->startFactory($imageProduct) . '<br />'
  50.   } 
  51. $client = new Client(); 
  52. /*运行结果: 
  53. 此处为文本 
  54. 此处为图像 
  55. */ 
  56. ?>

Tags: PHP设计模式 PHP工厂模式

分享到: