動態繫結
動態結合,也稱為方法重寫是一個例子的執行時間多型性當多個類包含相同方法的不同實現時發生,但是,該方法將在被呼叫的物件是未知直到執行時間。
如果某個條件指示將使用哪個類來執行操作,則這很有用,其中兩個類中的操作命名相同。
interface Animal {
public function makeNoise();
}
class Cat implements Animal {
public function makeNoise
{
$this->meow();
}
...
}
class Dog implements Animal {
public function makeNoise {
$this->bark();
}
...
}
class Person {
const CAT = 'cat';
const DOG = 'dog';
private $petPreference;
private $pet;
public function isCatLover(): bool {
return $this->petPreference == self::CAT;
}
public function isDogLover(): bool {
return $this->petPreference == self::DOG;
}
public function setPet(Animal $pet) {
$this->pet = $pet;
}
public function getPet(): Animal {
return $this->pet;
}
}
if($person->isCatLover()) {
$person->setPet(new Cat());
} else if($person->isDogLover()) {
$person->setPet(new Dog());
}
$person->getPet()->makeNoise();
在上面的例子中,Animal
類(Dog|Cat
)將知道 makeNoise
,直到執行時間取決於 User
類中的屬性。