Logo
Color-Of-Code
  Home   All tags   Terms and Conditions

GoF: Visitor pattern

January 02, 2019

Visitor

Goals

Represent an operation to be performed on the elements of an object structure. Visitor lets you define a new operation without changing the classes of the elements on which it operates.

This pattern usually makes use of a double dispatch mechanism to:

  • avoid the visitor to have knowledge about the element structure for visiting it
  • avoid the element to have knowledge about the operation the visitor performs

UML

Visitor UML class diagram

C#