Tagged Questions
The dynamic-dispatch tag has no wiki summary.
6
votes
1answer
214 views
Is the Visitor Pattern the fastest way to differentiate parameter types in C++?
Is the Visitor Pattern the fastest way to accomplish method parameter type identification (effectively single dispatch on a parameter, not a member's class) in C++? I might know the exact method(s) I ...
5
votes
2answers
94 views
Provide a different function body for a generic function based on type
Suppose I have some generic function
genericFunc :: a -> b
genericFunc x = doSomeHardWork
But for a particular type, there is a much more efficient way that genericFunc could be done.
...
5
votes
10answers
435 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
3answers
752 views
Emulating Dynamic Dispatch in C++ based on Template Parameters
This is heavily simplified for the sake of the question. Say I have a hierarchy:
struct Base {
virtual int precision() const = 0;
};
template<int Precision>
struct Derived : public Base {
...
4
votes
1answer
98 views
Dynamic Dispatch Implementations
I am currently looking for various ways to implement dynamic dispatch.
As far as I know, there are two "easy" ways to implement this:
Virtual Function Tables, like in C++
Message Dispatcher, like ...
3
votes
1answer
138 views
How to monkey patch a generic type tag function table
I found it interesting to read on one of the ways that you can do functional dynamic dispatch in sicp - using a table of type tag + name -> functions that you can fetch from or add to.
I was ...
2
votes
2answers
95 views
Dynamic dispatch, smart constructors, Template Haskell perhaps?
I'm looking at HaskellWiki > Existential type # Dynamic dispatch mechanism.
And I'm thinking, there should be a way in Template Haskell to take this part:
class Shape_ a where
...
type Radius = ...
2
votes
2answers
443 views
Dynamic dispatch and inheritance in python
I'm trying to modify Guido's multimethod (dynamic dispatch code):
http://www.artima.com/weblogs/viewpost.jsp?thread=101605
to handle inheritance and possibly out of order arguments.
e.g. ...
2
votes
3answers
299 views
Reflection or Dynamic Dispatching
I'm writing a abstract file parser (C#) which is extended by two concrete parsers. Both need to perform several checks. Currently there is a validate method in the abstract parser, which uses ...
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
4answers
56 views
Accessing a method which was assigned to a passed in Func<> parameter
Looks like I've missed something obvious but really can't figure out why I can't use/access a method which was assigned to a passed in Func<> parameter, I want to access/call it in the external ...
1
vote
2answers
215 views
Is this dynamic dispatch?
Is this dynamic dispatch:
abstract class A{
public method Meth1(){
//somecode
}
}
class B extends A{
}
class C extends A{
}
In another class entirely:
Some_Method(A a){
...
1
vote
1answer
110 views
Will function dispatch via vtable if calling non-virtual implementation?
Say I have the following:
struct Base
{
virtual void callback() { /* */ }
};
struct Derived : public Base
{
void callback() { /* */ }
};
Base* obj = new Derived;
...
1
vote
2answers
318 views
Dynamic method dispatch based on value of variable
Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the switch ...
0
votes
5answers
80 views
O'Reilly's “Objective-C Pocket Reference” claims C++ doesn't support Dynamic Dispatch, is this true?
On page 4, it says:
Objective-C decides dynamically--at run-time--what code will handle a message by searching the receiver's class and parent classes. (The Objective-C runtime caches the search ...
0
votes
4answers
42 views
Dynamic dispatch in Java
Suppose I have a class A which defines a method bar(). The method bar() calls another method foo(). I then extend A in B and override foo() and do not override bar() (so it gets inherited). Which ...
0
votes
1answer
19 views
Preloading Method Dispatch Cache via Early Calls?
Caching is the usual strategy that VMs use to make dynamic method dispatch rival that of static "v-table" based method lookup. Can we take advantage of this to intelligently "pre-call" methods on ...
0
votes
3answers
140 views
In Java: Code reuse possible for a chain of method calls up an inheritance hierarchy?
I have some class inheritance SubClass < MidClass < SuperClass and want to perform some TASK upward for all these classes. TASK is quite complex with only minor changes in the 3 classes, which I ...
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
4answers
258 views
suspicions of multithreading race conditions in c++ virtual calls w/ vtable implementation
I have a suspicion that there might be a race condition in a certain C++ multithreading situation involving virtual method calls in a vtable dynamic dispatching implementation (for which a vtable ...
-3
votes
1answer
168 views
Java, clever way to replace “if not null” statement?
I have a Vector full of longs.
I would like to be able to always call getFirstElement() on a Vector and then perform an action, let's say addToOtherVector(). I want to be able to not worry whether or ...