Tagged Questions

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.

learn more… | top users | synonyms

10
votes
6answers
2k 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 ...
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
4answers
1k 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
602 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 ...
5
votes
10answers
436 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
229 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 ...
5
votes
2answers
585 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
273 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" ...
2
votes
2answers
1k 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 ...
1
vote
3answers
121 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 ...
1
vote
3answers
151 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
1answer
111 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
54 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 ...
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 ...
0
votes
6answers
262 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. ...