W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎勵
外觀模式的目的不是為了讓你避免閱讀煩人的API文檔(當(dāng)然,它有這樣的作用),它的主要目的是為了減少耦合并且遵循得墨忒耳定律(Law of Demeter)
外觀模式通過嵌入多個(當(dāng)然,有時只有一個)接口來解耦訪客與子系統(tǒng),當(dāng)然也降低復(fù)雜度。
因此一個好的 Facade 里面不會有 new 。如果每個方法里都要構(gòu)造多個對象,那么它就不是 Facade,而是生成器或者[抽象|靜態(tài)|簡單] 工廠 [方法]。
優(yōu)秀的 Facade 不會有 new,并且構(gòu)造函數(shù)參數(shù)是接口類型的。如果你需要創(chuàng)建一個新實(shí)例,則在參數(shù)中傳入一個工廠對象。
Facade.php
<?php declare(strict_types=1); namespace DesignPatterns\Structural\Facade; class Facade { public function __construct(private Bios $bios, private OperatingSystem $os) { } public function turnOn() { $this->bios->execute(); $this->bios->waitForKeyPress(); $this->bios->launch($this->os); } public function turnOff() { $this->os->halt(); $this->bios->powerDown(); } }
OperatingSystem.php
<?php declare(strict_types=1); namespace DesignPatterns\Structural\Facade; interface OperatingSystem { public function halt(); public function getName(): string; }
Bios.php
<?php declare(strict_types=1); namespace DesignPatterns\Structural\Facade; interface Bios { public function execute(); public function waitForKeyPress(); public function launch(OperatingSystem $os); public function powerDown(); }
Tests/FacadeTest.php
<?php declare(strict_types=1); namespace DesignPatterns\Structural\Facade\Tests; use DesignPatterns\Structural\Facade\Bios; use DesignPatterns\Structural\Facade\Facade; use DesignPatterns\Structural\Facade\OperatingSystem; use PHPUnit\Framework\TestCase; class FacadeTest extends TestCase { public function testComputerOn() { $os = $this->createMock(OperatingSystem::class); $os->method('getName') ->will($this->returnValue('Linux')); $bios = $this->createMock(Bios::class); $bios->method('launch') ->with($os); /** @noinspection PhpParamsInspection */ $facade = new Facade($bios, $os); $facade->turnOn(); $this->assertSame('Linux', $os->getName()); } }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: