Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
9
votes
7answers
2k views

What's the difference between Polymorphism and Multiple Dispatch?

...or are they the same thing? I notice that each has its own Wikipedia entry: [1] [2], but I'm having trouble seeing how the concepts differ. Edit: And how does Overloading fit into all this?
6
votes
6answers
183 views

C++ Double Dispatch for Equals()

Imagine I have abstract base class Shape, with derived classes Circle and Rectangle. class Shape {}; class Circle : public Shape {}; class Rectangle : public Shape {}; I need to determine if two ...
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) ...
5
votes
2answers
264 views

Trying to use templates to double dispatch physics collision

I want to let the compiler build the connections of functions for a physics collision system. I have the test collision function: template <typename T, typename U> inline void Collision(T& ...
4
votes
5answers
145 views

How to call the correct method in Scala/Java based the types of two objects without using a switch statement?

I am currently developing a game in Scala where I have a number of entities (e.g. GunBattery, Squadron, EnemyShip, EnemyFighter) that all inherit from a GameEntity class. Game entities broadcast ...
4
votes
5answers
392 views

C++ double dispatch “extensible” without RTTI

Does anyone know a way to have double dispatch handled correctly in C++ without using RTTI and dynamic_cast<> and also a solution, in which the class hierarchy is extensible, that is the base class ...
4
votes
2answers
469 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 ...
4
votes
4answers
310 views

c++ double dispatch with mirrored hierarchies

the following class hierarchies represent abstract resource handler and resource hierarchies. Both have the interfaces as base classes. Now imagine you write a system where you can implement multiple ...
3
votes
4answers
100 views

given abstract base class X, how to create another template class D<T> where T is the type of the class deriving from X?

I want to be able to accept a Message& object which references either a Message1 or Message2 class. I want to be able to create a MessageWithData<Message1> or ...
3
votes
2answers
202 views

operator== with double dispatch in C++

How should one implement operator==(const Base& base) to compare subclasses s.t. the calls would be properly dispatched when called as Base* base1 = new Derived1(); Base* base2 = new ...
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); } ...
2
votes
1answer
253 views

Storing vector of std::shared_ptr<Foo> where Foo is a templated class

I have a base class that I made a template because I want to vary the type it takes for several functions, but I want to derive from these templated base classes. I want to store a vector of these ...
2
votes
4answers
193 views

Polymorphically Dispatching in Java

In the following, I want EventHandler to handle EventA one way, EventB another way, and any other Events (EventC, EventD) yet another way. EventReceiver receives only a reference to an Event and ...
2
votes
6answers
472 views

C++: doubts about visitor pattern

I know what Visitor Pattern is and how to use it; this question is not a duplicate of this one. I've got a library where I put most of the reusable code I write, and which I link to most of my ...
2
votes
0answers
121 views

Visitor pattern lacking parameters

I'm sure this must be a common problem with the Visitor pattern, so thought I'd see if there is a standard solution. How can you re-code a tree traversal where the methods are built into the tree ...
1
vote
2answers
37 views

Double dispatching fails for an InputMap in C++ - codes reduced to simplicity

Hello in one of my current projects I want to implement an InputMap. So I have an abstract input //Input.h namespace INPUT { class InputMap; class Input { public: Input(); virtual ~Input(); ...
1
vote
3answers
131 views

Implementing double dispatch with two class hierarchies in C++

I want to create an event dispatch system with a (shallow) hierarchy of Events that can be observed by a (shallow) hierarchy of EventObservers. I figured double-dispatch would allow a wide variety of ...
1
vote
1answer
88 views

Double dispatch without knowing the full hierarchy

I would like to implement the following thing in C++: I would like to have a bunch of child classes of a single class with the ability to call a function that takes a pair of objects of any of these ...
1
vote
3answers
236 views

C++ Double Dispatch problems

This is part 2 to a problem I previously asked: Is it possible to have polymorphic member overloading in C++? Using the Wiki example I created this example. ...
0
votes
3answers
163 views

Design to emulate Visitor without its drawbacks

I'm looking for a clean design to emulate Visitor functionality without the many drawbacks it has. In Java, the traditional implementations (as the described in GoF) resort to double dispatch to get ...
0
votes
1answer
63 views

c++ double dispatch observer notification

Here is the code I am currently troubleshooting: void CTimer::notify() { std::vector<IObserver*>::iterator it; for(it=observers.begin();it!=observers.end();++it) { ...
0
votes
2answers
133 views

std::shared_ptr and double callback

I have some logic where I am using std::shared_ptrs to objects in an inheritance hierarchy. At one point I need to handle these objects depending on their real type, so I am using a double dispatch ...
0
votes
3answers
130 views

Double dispatch produces 'hides virtual function' warnings, why?

I would like to implement interactions between two objects whose types are derived from a common base class. There is a default interaction and specific things may happen once objects of the same type ...
0
votes
1answer
130 views

Multiple dispatch and multi-methods

What are they, what's the different between them? Many sources, like Wikipedia, claim they're the same thing, but others explicitly say the opposite, like sbi in this question: First: "Visitor ...