在Ruby中,動態(tài)派發(fā)是指在運行時根據(jù)接收者對象的類型來確定調(diào)用哪個方法。這種靈活性使得可以根據(jù)不同的情況來執(zhí)行不同的操作,而不需要在編碼時確定調(diào)用的方法。
動態(tài)派發(fā)可以應(yīng)用在很多場景中,比如根據(jù)用戶輸入的不同命令來執(zhí)行不同的操作,根據(jù)不同的數(shù)據(jù)類型來調(diào)用不同的處理方法等。以下是一個簡單的示例:
class Animal
def make_sound
raise NotImplementedError, "Subclasses must implement make_sound method"
end
end
class Dog < Animal
def make_sound
puts "Woof!"
end
end
class Cat < Animal
def make_sound
puts "Meow!"
end
end
def make_animal_sound(animal)
animal.make_sound
end
dog = Dog.new
cat = Cat.new
make_animal_sound(dog) # 輸出 Woof!
make_animal_sound(cat) # 輸出 Meow!
在這個示例中,make_animal_sound
方法根據(jù)傳入的動物對象來調(diào)用make_sound
方法,而不需要在編寫方法時指定調(diào)用哪個子類的方法。這樣就實現(xiàn)了動態(tài)派發(fā)的功能。