PHP 程式碼重複使用策略包括:繼承:子類別繼承父類別屬性和方法。組合:類別包含其他類別或物件的實例。抽象類別:提供部分實現,定義需實現方法。介面:定義方法,不需實作。
PHP 設計模式:程式碼重複使用策略
介紹
程式碼複用是軟體開發中的重要原則,可以減少程式碼重複量,提高開發效率和程式碼可維護性。 PHP 提供了多種實作程式碼重複使用的策略,其中最常使用的包括:
##抽象類別
介面
#實戰案例:建立一個動物類別庫
為說明這些策略,我們以建構一個動物類別庫為例。
繼承
繼承可以讓子類別繼承父類別的屬性和方法。例如,我們可以建立一個哺乳動物類,繼承自動物類:
class Animal { protected $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } } class Mammal extends Animal { protected $numLegs; public function __construct($name, $numLegs) { parent::__construct($name); $this->numLegs = $numLegs; } public function getNumLegs() { return $this->numLegs; } }
組合
#######組合允許類別包含其他類別或物件的實例。例如,我們可以創建一個會說話的動物類,透過組合動物類和可說話介面:###interface Speakable { public function speak(); } class TalkingAnimal { protected $animal; protected $speakable; public function __construct(Animal $animal, Speakable $speakable) { $this->animal = $animal; $this->speakable = $speakable; } public function speak() { $this->speakable->speak(); } }
abstract class AbstractAnimal { protected $name; public function getName() { return $this->name; } abstract public function move(); } class Dog extends AbstractAnimal { protected $numLegs; public function __construct($name, $numLegs) { $this->name = $name; $this->numLegs = $numLegs; } public function move() { echo "The dog runs on $this->numLegs legs."; } }
interface Movable { public function move(); } class Dog implements Movable { // Implement the move method }
以上是PHP 設計模式程式碼重複使用策略的詳細內容。更多資訊請關注PHP中文網其他相關文章!