Ho risposto alla domanda a SO. Questa è essenzialmente la stessa risposta di là.
Nella singola spedizione --- ciò che vedi nella maggior parte dei moderni linguaggi OO --- un metodo è inviato in base al tipo di esecuzione di un singolo oggetto. Questo si presenta come l'operatore punto (in ruby, java, javascript, ecc.) O l'operatore freccia (perl, c ++).
# look, ma single dispatch!
# method on obj's run-time type that is called
dentist.work_on(patient)
La doppia spedizione, quindi, si baserebbe sul tipo di runtime di due oggetti. Ci sono alcuni modi in cui questo potrebbe apparire; e su quale oggetto dovrebbe vivere il metodo?
# Hmm, this looks weird.
# Is the method in to dentist.class or patient.class?
(dentist, patient).do_dentistry()
# okay, this looks more familiar; the method lives on obj1.class
# This only works in static-typed languages which support double dispatch
# in which you declare the type of the method parameters.
dentist.work_on(patient)
class Dentist
def work_on(Adult patient); ...; end
def work_on(Child patient); ...; end
end
Lingue come groovy che hanno una distribuzione multipla generalizzano il secondo esempio sopra; essi considerano i tipi di runtime dei parametri tutti quando si sceglie quale metodo eseguire. Vedi ad esempio questo post del blog su groovy e invio multiplo.
La maggior parte delle lingue OO moderne ha una sola spedizione e il Pattern di Multiple Dispatch è un tentativo di ottenere i vantaggi di una spedizione multipla nella lingua. Funziona anche per linguaggi dinamici come Ruby. Funziona eseguendo una singola operazione due volte di seguito. La prima chiamata al metodo chiamerà un metodo sul secondo oggetto.
class Dentist
def work_on(param)
param.dispatch_work(self)
end
def work_on_adult(patient)
drill_as_hard_as_you_can(patient)
end
def work_on_child(patient)
use_bubble_gum_toothpaste(patient)
end
end
class Adult
def dispatch_work(dentist)
dentist.work_on_adult(self)
end
end
class Child
def dispatch_work(dentist)
dentist.work_on_child(self)
end
end
Il pattern pattern di doppia spedizione è quello che io chiamo un pattern di basso livello perché altri pattern sono costruiti su di esso. Ad esempio, il pattern Visitor si basa molto sul modello di doppia spedizione.
Guardando i tuoi gists, il tuo primo gist in realtà non fa doppio invio. Certo, stai spedendo due volte, ma non stai cambiando il comportamento in quella seconda spedizione. Per cambiarlo in doppia spedizione, farei qualcosa di simile.
class Chicken
def make_dispatch dish
dish.make_with_chicken self
end
end
class Beef
def make_dispatch dish
dish.make_with_beef self
end
end
module Dish
def make meat
meat.make_dispatch self
end
end
class Sandwich
include Dish
def make_with_chicken chicken
puts "Grilled Chicken Sandwich"
end
def make_with_beef beef
puts "Roast Beef Sandwich"
end
end
class Stew
include Dish
def make_with_chicken chicken
puts "Thai curry"
end
def make_with_beef beef
puts "Beef stew"
end
end
class Casserole
include Dish
def make_with_chicken chicken
puts "Chicken Pot Pie--or something"
end
def make_with_beef beef
puts "Shepard's Pie"
end
end
Sandwich.new.make(Chicken.new)
Stew.new.make(Chicken.new)
Casserole.new.make(Beef.new)