Visitor Design Pattern JavaThere are 23 types of design pattern in Java that provides the well-defined solutions to the commonly occurring problem in application design. It represents the detailed description of the application and its flow. It is a solution to a problem that can be used in many different situations. It boosts-up the development process by providing a tested proven development paradigm. In this section, we will focus only on visitor design patterns in Java. Visitor PatternIt is a type of behavioral design pattern. It manages algorithms, relationships, and responsibilities between objects. It is used to perform an operation on a group of similar kinds of Objects at runtime. It decouples the operations from an object structure. Using visitor patterns, we can easily add new behaviors to the existing class hierarchy without changing the existing code. Sometimes, it is also known as a behavioral pattern. These design patterns provide all about class object communication. These are the patterns that are specifically concerned with communication between objects. Therefore, the primary goal of the visitor pattern is to moves the operational logic from the objects to another class. Using visitor patterns, we can achieve the open-close principle. According to the GoF, the visitor design pattern is defined as: Representing an operation to be performed on elements of an object structure. Visitor lets you define a new operation without changing the classes of the elements on which it operates. The following figure describes the concept of visitor design patterns. The visitor pattern actually creates an external class that uses data in other classes. We can use the pattern when we need to perform operations across a dispate set of objects. It provides additional functionality to the class without modifying it. There are the two most important methods that are used in visitor patterns. The accept() method accepts a visitor. It is provided by the Visitable class. The visit() method is called every time when we visit an element. It is implemented by the Visitor class. Example of Visitor Design PatternThe most common example of visitor pattern is shopping in the supermarket. In the supermarket, we pick the goods and add them to our cart. When we collect all the necessary goods to the cart, we go to the bill desk for billing. The cashier checks all the goods picked by us and tells us the total amount; we have to pay. Here, the cashier acts as a visitor. Where and when to use it?We should use a visitor design pattern if the application holds the following conditions:
Design ComponentsThere are five major components of visitor pattern:
Advantages
Disadvantages
Implementation of Visitor Design Pattern in JavaLet's design a pattern for the vehicles gone under service and visited by the inspector who calculates the service charge for each vehicle and total service charges including all the vehicles. In the following example, first, we will create two interfaces named Vehicle and VehicleInspector. Vehicle.java VehicleInspector.java Here, we will create five Java classes named Car.java, Van.java, Moterbike.java, VehicleInspection.java, and VehicleService.java. The classes Car, Van, and Motorbike implements the Vehicle interface. These are the vehicles going under maintenance. Car.java Motherbike.java Van.java VehicleInspection.java VehicleService.java When you create all the interfaces and Java classes, the project directory will look something like the following: Output: Service Charge for Car: 100 Service Charge for Van: 500 Service Charge for Motorbike: 50 Total Service Charge: 650 Therefore, the purpose of using visitor patterns is to give all implemented elementary functionalities. It can be used if we required to add infinite numbers of sophisticated functionalities. Next Topic# |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India