Visitor Pattern
You will go over the visitor pattern in detail with the help of a coding example in this lesson.
We'll cover the following...
What is the visitor pattern?
The visitor pattern allows the definition of new operations to the collection of objects without changing the structure of the objects themselves. This allows us to separate the class from the logic it implements. ...