Design Patterns
Visitor Design Pattern
Visitor Pattern is a behavioral design pattern, that helps you separate algorithms or new functionality you want to add to objects or classes. What this means is that, if you have to introduce new functionality or new behavior to an object or class, you don’t have to change the Class Read more…