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
6answers
183 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 ...
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 ...