Tagged Questions
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
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) ...
4
votes
5answers
390 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 ...
2
votes
1answer
249 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 ...
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();
...