码迷,mamicode.com
首页 > Web开发 > 详细

php设计模式之 简单工厂模式

时间:2014-10-13 21:18:17      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   div   on   cti   log   

作为对象的创建模式,用工厂方法代替new操作。

简单工厂模式是属于创建型模式,又叫做静态工厂方法模式,但不属于23种GOF设计模式之一。简单工厂模式是由一个工厂对象决定创建出哪一种产品类的实例。

 

<?php
/*
 * 工厂类,里面包含工厂方法,代替new操作,由参数决定创建哪一种对象
 */
class operator{
	public $a,$b,$oper;
	
	public function __construct($a,$b,$oper){
		$this->a = $a;
		$this->b = $b;
		$this->oper = $oper;
	}
	
	public function getresult(){
		switch ($this->oper){
			case 1: $model = new add($this->a,$this->b);break;
			case 2: $model = new jian($this->a,$this->b);break;
			case 3: $model = new cheng($this->a,$this->b);break;
			case 4: $model = new chu($this->a,$this->b);break;
		}
		return $model->result();
	}
}

/*
 * 抽象类,其子类必须实现运算方法
 */
abstract class poper{
	public $a,$b;
	public function __construct($a,$b){
		$this->a =$a;
		$this->b = $b;
	}
	abstract function result();
}

//子类,负责具体业务实现
class add extends poper{
	public function result(){
		return $this->a+$this->b;
	}
}

class jian extends poper{
	public function result(){
		return $this->a-$this->b;
	}
}

class cheng extends poper{
	public function result(){
		return $this->a*$this->b;
	}
}
class chu extends poper{
	public function result(){
		if($this->b ==0){
			return ‘除数不能为0‘;
		}
		return $this->a/$this->b;
	}
}
?>

  

 

php设计模式之 简单工厂模式

标签:blog   http   io   ar   sp   div   on   cti   log   

原文地址:http://www.cnblogs.com/taijun/p/4022868.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!