ディスパッチ
メッセージとメソッド
A message is a name that can be sent from one object to another, possibly with additional objects as arguments.
メッセージは、あるオブジェクトから他のオブジェクトに送られる名前です。追加のオブジェクトを引数として一緒に送ることもできます。
code:js
account .withdraw(100)
// ^^^^^^^ ^^^^^^^^^^^^^
// receiver message
Method dispatch is the algorithm used to decide which method should be invoked in response to a message.
メソッドディスパッチは、どのメソッドがメッセージへの応答として発行されるべきかを決めるために用いられる仕組みです。