PHP設計模式之組合模式

來源:互聯網
上載者:User
組合模式屬於結構型模式

概述:將對象組合成樹形結構以表示‘部分-整體’的階層。組合模式使得使用者對單個對象和組合對象的使用具有一致性。

組合和彙總都描述一個類長期持有其他類的一個或多個執行個體的情況。

彙總:被包含對象是容器的核心部分,但是他們也可以被其他對象所包含。彙總關係用一條以空心菱形開頭的線來說明。

組合:被包含的對象只能被它的容器所引用。當容器被刪除時,它也應該被刪除。組合關係的菱形是實心的

/**

* 執行單元

*/

abstract class Unit{

public function bombardStrength();

}

/**

* 弓箭手

*/

class ArcherUnit extends Unit{

public function bombardStrength(){

return 4;

}

}

/**

* 雷射大炮

*/

class LaserCannonUnit extends Unit{

public function bombardStrength(){

return 10;

}

}

/**

* 軍隊

*/

class Arm{

private $units = array();

private $strength = 0;

public function addUnit(Unit $unit){

array_push($this->units, $unit);

}

public function bombardStrength(){

foreach ($this->units as $unit){

$this->strength += $unit->bombardStrength();

}

}

}

/**

* 組合模式

*/

public function actionCombine(){

$archer = new ArcherUnit;

$laserCannon = new LaserCannonUnit;

$arm = new Arm;

$arm->addUnit($archer);

$arm->addUnit($laserCannon);

echo $arm->bombardStrength();

}

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.