码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式(二)工厂模式

时间:2017-04-20 21:03:15      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:实现   this   cti   工厂模式   其他   pre   turn   factory   代码   

工厂模式(Factor Pattern) 负责生成其他对象的类或方法

代码实现:

class DemoController extends APP_Controller_Action {

    public function factoryAction(){
        $name = $this->getParam("name");
        $action = $this->getParam("action");
        $child = factory::createClass($name);
        
    }
}

class factory{
     static function createClass($class_name){
         return new $class_name;
     }
}

class child{
    public function test(){
        echo "create child factor success";
    }
}

class adult{
    public function test(){
        echo "create adult factor success";
    }
}

  

设计模式(二)工厂模式

标签:实现   this   cti   工厂模式   其他   pre   turn   factory   代码   

原文地址:http://www.cnblogs.com/maggie94/p/6740581.html

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