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:
“It should be noted that when he seizes a state the new ruler ought to determine all the injuries that he will need to inflict. He should inflict them once and for all, and not have to renew them every day.”
—Niccolò Machiavelli (14691527)
“I do not think that there is any doubt about where I stand in respect to boycotts. If there is, I will just state what I think about them. They are illegal and ought to be suppressed. I would never countenance that which recognizes their legality.”
—William Howard Taft (18571930)
“Fashion required the suppression of all naturalnessto walk upright, with unbending joints; to shake hands after the pump- handle formula; to look inexpressibly indifferent towards everybody and everything; and speak only in a mincing voice was to be a decorous member of society.”
—For the State of Rhode Island, U.S. public relief program (1935-1943)