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:

    The state is therefore everyone; the rules within the state are laws which safeguard the welfare of all and which must originate from the welfare of all.
    Georg Büchner (1813–1837)

    The State has but one face for me: that of the police. To my eyes, all of the State’s ministries have this single face, and I cannot imagine the ministry of culture other than as the police of culture, with its prefect and commissioners.
    Jean Dubuffet (1901–1985)

    I also believe that few people remain completely untouched by the thought that instead of the life they lead there might also be another, where all actions proceed from a very personal state of excitement. Where actions have meanings, not just causes. And where a person, to use a trivial word, is happy, and not just nervously tormenting himself.
    Robert Musil (1880–1942)