The double-dispatch tag has no wiki summary.
7
votes
4answers
212 views
I need to ask about the object class, but it's a bad practice. Alternatives for this case?
I'm having trouble extending an application.
It is an attendance record system. Currently each employee records attendance by a card that has a QR code. Now they want to add fingerprint recognition, ...
6
votes
4answers
94 views
Double dispatch and template class
I have a C++ code where I compare different class deriving from a common mother class, Foo. If the two class have not the same type, the comparison is always false. Otherwise, it compares some ...
2
votes
1answer
58 views
Dynamic Double Dispatch without using dynamic keyword
I am trying to port this example of dynamic double dispatching to C#. I've got the example to work, but I feel like I've shortcut the DynamicDispatch method in the MessageBase class a bit by using ...
0
votes
1answer
48 views
Implementing a double dispatch in C# extensible for both functions and objects to operate on
I'm looking for a way to implement a double dispatch that can be extended for both methods and classes.
Until now I used basically three approaches:
the traditional procedural approach with a great ...
0
votes
1answer
64 views
C++ Calling a Double dispatch method with objects that are not relative to each other
I have a series of shape objects that can check if they intersect one another (an intersection is true if any part of either object overlaps the other). This works great with double dispatch because ...
0
votes
2answers
71 views
Double dispatch in Java
I am not sure if i have wrong idea about double dispatch. But this is what i thought:
class A{
void testA( B obj ){
System.out.println( "A-Parent" );
obj.testB();
}
}
class ...
4
votes
2answers
130 views
Double Dispatch automatization in Java
I have two interfaces Query and Filter(Query is a class in example for simplification, I have 1 query for now) , I now want write function Query.applyFilter() depending on what Filter is real is i.e ...
1
vote
0answers
50 views
Most Pythonic double dispatch for extracting View information from Model
I'm coding a desktop app with Python and Qt, using PySide. I need to display a tree view in which top-level items are objects of different type than their children. Specifically, a top-level item is a ...
1
vote
2answers
378 views
Double dispatch in Java example
I was reading the Wikipedia article on DD and jumped over to the "Double dispatch in Java and an example" link given at the end. The description of the following Serializable example seems rather ...
4
votes
3answers
180 views
Separation of algorithms and data in a geometry library (triple-dispatching needed?)
I am having trouble designing the part of my application that deals with geometry. In particular, I would like to have a hierarchy of classes and separate methods for intersections.
The problem
The ...
4
votes
2answers
252 views
Understanding double dispatch C++
I try to understand how double dispatch works. I created an example where a monster and a warrior derived from the abstract class Creature could fight. The class Creature has method "fight", which is ...
6
votes
1answer
335 views
Visitor Pattern in C++ with multiple visitable parameters
Consider the following hierarchy:
class Base
{
virtual void Method() = 0;
virtual void Accept(Visitor *iVisitor) = 0;
};
class Derived1: public Base
{
virtual void Method(){//impl}
...
1
vote
0answers
70 views
Double Dispatch [duplicate]
Possible Duplicate:
Double dispatch in C#?
Can somebody explain what is the Double Dispatch pattern in detail with a simple example in C#?
I know there are already some questions about ...
9
votes
4answers
516 views
Double-dispatch and alternatives
I am trying to find a better way to handle some growing if constructs to handle classes of different types. These classes are, ultimately, wrappers around disparate value types (int, DateTime, etc) ...
2
votes
2answers
238 views
(Nested?) Multiple Dispatch [Visitor Pattern]
I've come to a road block in my application architecture. I've just started using the visitor pattern to execute specific algos on abstract objects of which type I don't know at runtime. My problem is ...
1
vote
3answers
264 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 ...
4
votes
5answers
385 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 ...
0
votes
1answer
146 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)
{
...
1
vote
2answers
54 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();
...
6
votes
6answers
402 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 ...
4
votes
5answers
1k 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 ...
3
votes
4answers
165 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 ...
1
vote
3answers
255 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 ...
2
votes
1answer
515 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 ...
5
votes
2answers
560 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& ...
0
votes
2answers
266 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 ...
1
vote
1answer
161 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 ...
2
votes
3answers
388 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 ...
3
votes
5answers
660 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 ...
1
vote
3answers
341 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
1answer
224 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 ...
4
votes
5answers
1k 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 ...
3
votes
2answers
284 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 ...
6
votes
2answers
1k 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
0answers
211 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 ...
3
votes
1answer
107 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);
}
...
4
votes
4answers
362 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 ...
6
votes
4answers
4k 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) ...
12
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?
30
votes
3answers
8k 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?
