Tagged Questions
15
votes
4answers
5k views
Double dispatch in C#?
I have heard/read the term but don't quite understand what it means.
When should I use this technique and how would I use it? Can anyone provide a good code sample?
6
votes
5answers
2k views
Double dispatch/multimethods in C++
I have a question on C++ double dispatch. In the code below, I want the results from the second set to match the results from the first set.
I don't know the actual type (unless I try dynamic_cast) ...
4
votes
2answers
468 views
What is Single and Double Dispatch?
i have wrote the visitor pattern as follow but i don't understand what is single and double dispatch.
AFAIK, single dispatch is invoke a method based on caller type where double dispatch is invoke a ...
3
votes
1answer
89 views
method with two parameters which both need to be double dispatched
lets say i have a method which has two parameters. i have been implementing them as:
if(aObj instance of Marble) {
if(bObj instance of Bomb) {
this.resolve((Marble)aObj,(Bomb)bObj);
}
...