国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

裝飾器模式

2019-11-15 02:10:02
字體:
來源:轉載
供稿:網友
裝飾器模式

裝飾器模式

<?php//裝飾器模式-在不改變原有類的結構上,對類的功能那個作補充//武器基類abstract class Weapon{    abstract public function descriptions();    abstract public function cost();}//劍類class Glave extends Weapon{    public function descriptions(){        return 'Glave';    }        public function cost(){        return "100";    }}//匕首類class Knife extends Weapon{    public function descriptions(){        return __CLASS__;    }    public function cost(){        return "80";    }}//斧類class Axe extends Weapon{    public function descriptions(){        return  __CLASS__;    }    public function cost(){        return "200";    }}//屬性類class PRoperty extends Weapon{    protected $_weapon = null;    protected $_price = 0;    protected $_descriptions = '';    public function __construct(Weapon $weapon){        $this->_weapon = $weapon;    }    public function cost(){        return     $this->_weapon->cost() + $this->_price;    }        public function descriptions(){        return $this->_weapon->descriptions().$this->_descriptions;    }}//力量屬性class Strength extends Property{    protected $_price = 30;    protected $_descriptions = '+ Strength';}//敏捷屬性class Agility extends Property{    protected $_price = 50;    protected $_descriptions = '+ Agility';}//智力屬性class Intellect extends Property{    protected $_price = 20;    protected $_descriptions = '+ Intellect';}$weapon = new Agility(new Strength(new Strength(new Glave())));echo $weapon->cost();echo $weapon->descriptions();


上一篇:適配器模式

下一篇:Zend Studio 12 大集合

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 正定县| 嘉禾县| 云龙县| 奉贤区| 永善县| 福州市| 平罗县| 三门峡市| 镶黄旗| 中宁县| 中江县| 伊宁市| 亳州市| 阜阳市| 新疆| 高安市| 瓮安县| 防城港市| 息烽县| 桃江县| 无锡市| 定西市| 吉安县| 手游| 宾阳县| 鞍山市| 敦煌市| 陇西县| 永寿县| 旅游| 奇台县| 华坪县| 随州市| 沅陵县| 根河市| 徐水县| 济阳县| 英德市| 绥德县| 凤冈县| 湘阴县|