Visitor Pattern - State

State

Aside from potentially improving separation of concerns, the visitor pattern has an additional advantage over simply calling a polymorphic method: a visitor object can have state. This is extremely useful in many cases where the action performed on the object depends on previous such actions.

An example of this is a pretty-printer in a programming language implementation (such as a compiler or interpreter). Such a pretty-printer object (implemented as a visitor, in this example), will visit nodes in a data structure that represents a parsed and processed program. The pretty-printer will then generate a textual representation of the program tree. To make the representation human-readable, the pretty-printer should properly indent program statements and expressions. The current indentation level can then be tracked by the visitor as its state, correctly applying encapsulation, whereas in a simple polymorphic method invocation, the indentation level would have to be exposed as a parameter and the caller would rely on the method implementation to use and propagate this parameter correctly.

Read more about this topic:  Visitor Pattern

Famous quotes containing the word state:

    Think of the importance of Friendship in the education of men.... It will make a man honest; it will make him a hero; it will make him a saint. It is the state of the just dealing with the just, the magnanimous with the magnanimous, the sincere with the sincere, man with man.
    Henry David Thoreau (1817–1862)

    till disproportion’d sin
    Jarr’d against natures chime, and with harsh din
    Broke the fair musick that all creatures made
    To their great Lord, whose love their motion sway’d
    In perfect Diapason, whilst they stood
    In first obedience, and their state of good.
    John Milton (1608–1674)

    The naturalistic literature of this country has reached such a state that no family of characters is considered true to life which does not include at least two hypochondriacs, one sadist, and one old man who spills food down the front of his vest.
    Robert Benchley (1889–1945)