建造者模式

<?php
// 当一个对象可能有几种情况,避免构造函数伸缩时使用。
// 与工厂模式的主要区别在于: 当创建是一个一步过程时,将使用工厂模式,
// 而在创建是一个多步过程时,将使用构建器模式。
// php 技术群:781742505
/**
 * Class Burger
 */
class Burger
{
    /**
     * @var int
     */
    protected $size;

    /**
     * @var bool
     */
    protected $cheese = false;
    /**
     * @var bool
     */
    protected $pepperoni = false;
    /**
     * @var bool
     */
    protected $lettuce = false;
    /**
     * @var bool
     */
    protected $tomato = false;

    /**
     * Burger constructor.
     *
     * @param BurgerBuilder $builder
     */
    public function __construct(BurgerBuilder $builder)
    {
        $this->size = $builder->size;
        $this->cheese = $builder->cheese;
        $this->pepperoni = $builder->pepperoni;
        $this->lettuce = $builder->lettuce;
        $this->tomato = $builder->tomato;
    }
}

/**
 * Class BurgerBuilder
 */
class BurgerBuilder
{
    /**
     * @var int
     */
    public $size;

    /**
     * @var bool
     */
    public $cheese = false;
    /**
     * @var bool
     */
    public $pepperoni = false;
    /**
     * @var bool
     */
    public $lettuce = false;
    /**
     * @var bool
     */
    public $tomato = false;

    /**
     * BurgerBuilder constructor.
     *
     * @param int $size
     */
    public function __construct(int $size)
    {
        $this->size = $size;
    }

    /**
     * @return $this
     */
    public function addPepperoni()
    {
        $this->pepperoni = true;

        return $this;
    }

    /**
     * @return $this
     */
    public function addLettuce()
    {
        $this->lettuce = true;

        return $this;
    }

    /**
     * @return $this
     */
    public function addCheese()
    {
        $this->cheese = true;

        return $this;
    }

    /**
     * @return $this
     */
    public function addTomato()
    {
        $this->tomato = true;

        return $this;
    }

    /**
     * @return Burger
     */
    public function build(): Burger
    {
        return new Burger($this);
    }
}

$burger = (new BurgerBuilder(14))
    ->addPepperoni()
    ->addLettuce()
    ->addTomato()
    ->build();
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值