| A Design Pattern Dictionary | ||
Section | - The Dictionary | ||
Foil | 9 | - Double Dispatch Idiom |
www | ||||
.swskilltree | Page published 2003/12/11, updated 2009/8/2. Copyright © 2016 by Avner Ben. All rights reserved. | |||
.org |
Context:
|
"Double Polymorphism", "Multi-method" requirement: Functionality distributed between two objects of unknown type (e.g. finding the intersection area between two shapes). |
||||||
Challenge: |
To resolve the multi-method efficiently, (e.g. without runtime searching). |
||||||
Skill: |
The system shall have the capability to resolve multiple-object functionality among objects...
|
||||||
Participants: |
|
||||||
Signature: |
Left-side Subject responds to messages involving the entire known range of right-side Subject types. Concrete subjects implement this interface. |
||||||
Used by: |
Visitor, efficient multi-method implementations. |
||||||
Known issues: |
Limited to a "stable hierarchy". (In a statically scoped language:) creates cyclic namespace dependency. |
||||||
Scope: |
Languages that do not support multi-methods. |