淺析php建立者模式_PHP

來源:互聯網
上載者:User
關鍵字 php 建立者模式
建立者模式:

在建立者模式中,用戶端不再負責對象的建立與組裝,而是把這個對象建立的責任交給其具體的建立者類,把組裝的責任交給組裝類,用戶端支付對對象的調用,從而明確了各個類的職責。
應用情境:建立非常複雜,分步驟組裝起來。

代碼如下:


<?php
/**
* 建立者模式
*/
//購物車
class ShoppingCart {
//選中的商品
private $_goods = array();
//使用的優惠券
private $_tickets = array();
public function addGoods($goods) {
$this->_goods[] = $goods;
}
public function addTicket($ticket) {
$this->_tickets[] = $ticket;
}
public function printInfo() {
printf("goods:%s, tickets:%sn", implode(',', $this->_goods), implode(',', $this->_tickets));
}
}
//假如我們要還原購物車的東西,比如使用者關閉瀏覽器後再開啟時會根據cookie還原
$data = array(
'goods' => array('衣服', '鞋子'),
'tickets' => array('減10'),
);
//如果不使用建立者模式,則需要業務類裡一步步還原購物車
// $cart = new ShoppingCart();
// foreach ($data['goods'] as $goods) {
// $cart->addGoods($goods);
// }
// foreach ($data['tickets'] as $ticket) {
// $cart->addTicket($ticket);
// }
// $cart->printInfo();
// exit;
//我們提供建立者類來封裝購物車的資料群組裝
class CardBuilder {
private $_card;
function __construct($card) {
$this->_card = $card;
}
function build($data) {
foreach ($data['goods'] as $goods) {
$this->_card->addGoods($goods);
}
foreach ($data['tickets'] as $ticket) {
$this->_card->addTicket($ticket);
}
}
function getCrad() {
return $this->_card;
}
}
$cart = new ShoppingCart();
$builder = new CardBuilder($cart);
$builder->build($data);
echo "after builder:n";
$cart->printInfo();
?>

可以看出,使用建立者模式對內部資料複雜的對象封裝資料群組裝過程後,對外介面就會非常簡單和規範,增加修改新資料項目也不會對外部造成任何影響。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.