首页 > php教程 > php手册 > 正文

php设计模式 Builder (建造者模式)

php中文网
发布: 2016-05-21 10:41:01
原创
1494人浏览过

php有23种设计模式,你全都知道吗?下面用代码介绍建造者模式(Builder模式)

<?php
/**
 * 建造者模式
 *
 * 将一个复杂对象的构建与它的表示分离,使用同样的构建过程可以创建不同的表示
 */
class Product {
    public $_type = null;
    public $_size = null;
    public $_color = null;
    public function setType($type) {
        echo "set product type<br/>";
        $this->_type = $type;
    }
    public function setSize($size) {
        echo "set product size<br/>";
        $this->_size = $size;
    }
    public function setColor($color) {
        echo "set product color<br/>";
        $this->_color = $color;
    }
}
$config = array(
    "type" => "shirt",
    "size" => "xl",
    "color" => "red",
);
// 没有使用bulider以前的处理
$oProduct = new Product();
$oProduct->setType($config['type']);
$oProduct->setSize($config['size']);
$oProduct->setColor($config['color']);
// 创建一个builder类
class ProductBuilder {
    var $_config = null;
    var $_object = null;
    public function ProductBuilder($config) {
        $this->_object = new Product();
        $this->_config = $config;
    }
    public function build() {
        echo "--- in builder---<br/>";
        $this->_object->setType($this->_config['type']);
        $this->_object->setSize($this->_config['size']);
        $this->_object->setColor($this->_config['color']);
    }
    public function getProduct() {
        return $this->_object;
    }
}
$objBuilder = new ProductBuilder($config);
$objBuilder->build();
$objProduct = $objBuilder->getProduct();
登录后复制


其他相关设计模式:

备忘录模式(Memento模式)
观察者模式(Observer模式)
模板方法模式(Template Method模式)
命令模式(command模式)
组合模式(composite模式)
享元模式(flyweight模式)
策略模式(strategy模式)
状态模式(state模式)
适配器模式(adapter模式)
工厂模式(factory模式)
原型模式(prototype模式)
外观模式(facade模式)
单例模式(singleton模式)
桥梁模式(bridge模式)
装饰模式(decorator模式)
抽象工厂模式(abstract factory模式)
建造者模式(Builder模式)
访问者模式(Visitor模式)
解释器模式(Interpreter模式)
中介者模式(Mediator模式)
职责链模式(Chain Of Responsibility模式)
代理模式(Proxy模式)
迭代器模式(Interator模式)
数据访问对象模式(DAO模式)
委托模式(Delegation模式)

本文地址:

转载随意,但请附上文章地址:-)

uBrand
uBrand

一站式AI品牌创建平台,在线品牌设计,AI品牌策划,智能品牌营销;uBrand帮助创业者轻松打造个性品牌!

uBrand 67
查看详情 uBrand
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号