A technique for polymorphic invocation of methods based on the types of many (or all) arguments. Compare to single-dispatch, used in common OO languages, where methods can only be polymorphic in the first argument -- the runtime resolution of a.doSomething(x, y, z) depends only on the type of a.
1
vote
2answers
107 views
Multiple Dispatch with Generics
I'm trying to abstract away my interface implementations by providing a factory/builder using generics. However, I'm running into an issue with multiple dispatch and C# generics at run time that's ...
1
vote
4answers
129 views
Defining “overloaded” functions in python
I really like the syntax of the "magic methods" or whatever they are called in Python, like
class foo:
def __add__(self,other): #It can be called like c = a + b
pass
The call
c = a + ...
3
votes
1answer
236 views
Use invokedynamic to implement multiple dispatch
I wondered if Java7's new invokedynamic bytecode instruction could be used to implement multiple dispatch for the Java language. Would the new API under java.lang.invoke be helpful to perform such a ...
1
vote
3answers
361 views
c# multiple dispatch options?
I have these classes :
class Asset
{ }
class House:Asset
{ }
consider these outsiders static functions :
static void Foo (Asset a) { }
static void Foo (House h) { }
If i write :
House ...
2
votes
2answers
239 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 ...
0
votes
1answer
246 views
Will Java 7's MethodHandles provide multiple dispatch?
Will method-handle objects directly provide the ability to invoke methods using multiple-dispatch. If so, is only double-dispatch supported, or will the dispatching mechanism take as many arguments as ...
0
votes
1answer
71 views
What is a good way to identify which specific gameObjects are colliding?
This is with respect to a physics engine. Once a collision occurs, it returns me the information that two gameObjects are colliding. All entities, like player, monster, bullet etc are derived ...
1
vote
3answers
162 views
Invoking a method overloaded where all arguments implement the same interface
My starting point is the following:
- I have a method, transform, which I overloaded to behave differently depending on the type of arguments that are passed in (see transform(A a1, A a2) and ...
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 ...
5
votes
10answers
485 views
Why doesn't C++ allow you to request a pointer to the most derived class?
(This question should probably be answered with a reference to Stroustrup.)
It seems extremely useful to be able to request a pointer to the most derived class, as in the following:
class Base { ... ...
5
votes
5answers
318 views
Apples, oranges, and pointers to the most derived c++ class
Suppose I have a bunch of fruit:
class Fruit { ... };
class Apple : public Fruit { ... };
class Orange: public Fruit { ... };
And some polymorphic functions that operate on said fruit:
void ...
7
votes
2answers
929 views
Does new 'dynamic' variable type in .NET 4.0 solve the single/multiple method dispatch issue in CLR?
The problem of single dispatch is mostly familiar to people engaged in coding with statically typed languages like Java and C#. The basic idea is:
While the runtime polymorphism allows us to dispatch ...
3
votes
3answers
409 views
Optimizing multiple dispatch notification algorithm in C#?
Sorry about the title, I couldn't think of a better way to describe the problem. Basically, I'm trying to implement a collision system in a game. I want to be able to register a "collision handler" ...
1
vote
3answers
173 views
Virtual functions with two operands that can take many different types
Let me start with a concrete example. In C++, I have a hierarchy of classes under the abstract base class CollisionVolume. Any collision volume needs to be able to detectCollision with any other ...
0
votes
6answers
348 views
Special interaction between derived objects (i.e. mutiple dispatch)
So, I have a list of base class pointers:
list<Base*> stuff;
Then, at some point one of the objects will look through all other objects.
Base * obj = ...; // A pointer from the 'stuff'-list.
...
11
votes
4answers
3k views
Multiple dispatch in C++
I am trying to understand what multiple dispatch is. I read a lot of various texts but I still have no idea what multiple dispatch is and what it is good for. Maybe the thing I am missing is piece of ...
6
votes
9answers
762 views
What is - Single and Multiple Dispatch (in relation to .NET)?
Is it the same as overloading, if not, can you please provide and example of each in C#
I have read the responses to a similar question asked in SO ... i did not understand the responses posted to ...
13
votes
6answers
3k views
Is C# a single dispatch or multiple dispatch language?
I'm trying to understand what single and multiple dispatch are, exactly.
I just read this:
http://en.wikipedia.org/wiki/Multiple_dispatch
And from that definition is seems to me that C# and VB.Net ...
2
votes
2answers
2k views
Work around Java's static method dispatching without Double Dispatch/Visitor patterns
I am using a class Foo that provides these methods:
String overloadedMethod(Object)
String overloadedMethod(Goo)
Since Java statically dispatches on the non-receiver argument, I cannot just pass my ...
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?
