I was looking into other questions related to the visitor pattern but couldn't understand the implementation of double dispatch in visitor pattern.
Please refer to the link Visitor Pattern
How does double dispatch work in the Visitor pattern?
|
I was looking into other questions related to the visitor pattern but couldn't understand the implementation of double dispatch in visitor pattern. Please refer to the link Visitor Pattern How does double dispatch work in the Visitor pattern?
| |||||
feedback
|
|
The element object's | ||||
|
feedback
|
|
Well, here's the relevant quote from that article:
This essentially means different visitors can visit the same type and different types can be visited by the same visitor. The effect of a named operation that is performed using the visitor pattern may depend on the visitor and the visited (double dispatch). | |||
|
feedback
|