Design Patterns For Beginners — with Java Examples

Is it inheritance or composition?BehavioralBehavioral patterns focus more on the behavior of objects, or more precisely, interactions between objects.

How does an object communicate with another object?Exploring Creational Design PatternsWe explore the following creational design patterns:The Prototype PatternA Prototype represents a fully initialized instance, to be copied or cloned.

Let’s take an example:Let’s consider the design of a Chess game.

Every game of Chess has the same initial setup — The King, Queen, Rook, Bishop, Knight and the Pawns all have their specific places.

Let’s say we want to build software to model a Chess game.

Every time a new Chess game is played, we need to create the initial board layout.

Instead of repeating the creation of chess board each timeWe can create an object that contains the initial setupClone from it — each time a new Chess game is played.

The object with the initial setup of the chess board is the prototype.

And, we are using the prototype pattern.

Isn’t it simple?In the Prototype pattern, you have a fully initialized instance — here, the initial board layout — that is readily available.

Whenever a new Chess game is started — for example, in any of the numerous online Chess portals — this initialized instance is merely copied, or cloned.

The Builder PatternThe Builder Pattern separates object construction from its representation.

What does that mean?Assume that you go out for a multi- course dinner to a Restaurant.

Such a dinner would have many options, such as Starters, Main course and Desserts.

You would probably choose two or three out of the presented options.

A particular client may want to have dinner with the first two options only, leaving out the Desserts option.

Yet another would prefer the Main course and Desserts, skipping the Starters entirely.

Similar situations might arise in designing software.

You may need to build an object using a subset of the options that are available — or, create the object in multiple ways.

This is where the Builder pattern comes in handy.

To understand it further, let’s look at a small piece of code.

Let’s say you’re writing software for a machine that prepares coffee.

The main ingredients of coffee are coffee, milk and sugar.

Dependending from which part of the world you are from, you choose whether or not you have sugar and milk.

The Builder pattern steps in to provide these Coffee creation options for you.

Have a look at the code inside main().

What we have inside the Coffee is a Builder, to which we pass the mandatory type of the coffee.

Chained to that call, we make other calls adding in our preferences of the other ingredients.

Someone else who wants a different coffee can easily build it.

This leads to a huge amount of flexibility in building objects.

Other approaches to solving this problem, such as the use of setters, have many inherent problems.

These solution lead to code that is difficult to read, and also behave erratically in multithreaded programs.

The Builder pattern solves all those problems.

The advantages of using the Builder pattern are:It simplfies object creationLeads to more readable codeDoes not allow the values to be modifiedThe Singleton PatternThe Singleton pattern is the most famous among all the design patterns.

What this pattern does is very clear from its name — allow only one instance of a class per JVM at any point in time.

A good real world comparison would probably be the President of a Nation.

However, there is a disclaimer here — there can only be one instance of that class, per JVM.

If you have a Java application that runs as part of a cluster of application servers, each server runs a separate JVM instance.

Therefore, you are allowed to have one instance of the Singleton created on each application server, at any given point of time.

There are a few things to remember whenever you create a Singleton class.

The constructor needs to be private, to prevent the possibility of other objects creating instances of your class.

In Java, build a Singleton using an Enum.

JEE 7 has a built in annotation named @Singleton, along with other related annotations.

The main disadvantage of using the Singleton pattern is that the resulting code is difficult to unit test.

Make clear decision as to where you absolutely need to use a Singleton, and where you don’t.

In frameworks such as Spring, the objects that are managed are called beans, and beans are Singletons by default.

What Spring does well is to ensure all this is in the background.

The Factory Method PatternThe intent of the Factory Method pattern is to create a family of object types.

Let’s look at a code example.

This code implements a PersonFactory.

This class has a static method named getPerson() that accepts a person’s name and gender as parameters.

Depending on the gender String passed in, it either returns a Male or a Female object.

If somebody wants to create a male person, they invoke the getPerson() method on the PersonFactory with an gender argument of "M".

Similarly, you can create a female person by invoking the getPerson() method on the PersonFactory with an gender argument of "F".

We are passing in an identifier of the the type of object we need, at the time of creation, while still referring to the generic type, Person.

The Male and Female classes are hidden behind the PersonFactory implementation.

The advantage of using the Abstract Method pattern is that you can add additional types to the factory, without much change in the other classes using this class.

In our example, you can add more types of gender, without affecting the existing code that deals with other genders, which all use Person.

What about the complexity involved in creating an object?It greatly simplifies the task of object creation.

The PersonFactory makes the decision of what object to create, and delivers it to us.

Do check out our video on the same topic:Structural Design PatternsLet us now have a look at the structural design patterns we want to explore.

The Proxy PatternA Proxy is an object that represents another object.

Let’s look at a real world example.

Your debit card is a proxy for your bank account.

Whenever you make a transaction using a debit card, the corresponding money is deducted from the bank account.

The debit card is a proxy for your bank account, which is the actual object.

Similar to that, in programming you might have to program interactions with remote objects.

In such situations, you create a proxy object that takes care of all external communications.

You would communicate with the proxy as if it were residing on your local machine.

A good example are the EJB Home and Remote interfaces.

A proxy hides the complexity involved in communicating with the real object.

The Decorator PatternThe Decorator pattern allows us to add responsibilities to objects, dynamically.

In object oriented programming, we typically use a lot of inheritance.

Example 1Let’s say a particular Pizza outlet has 10 types of pizza.

Our implementation has 10 classes for these Pizza types.

Now there is a requirement to make these pizzas available with 3 types of toppings.

If we would want to create individual classes for each pizza and topping combination, we have a total of 30 classes to manage.

Instead of doing this, can we make the pizza-topping relationship dynamic?.Can we add a topping on top of an existing pizza?We need to use a topping as a decorator on top of any pizza.

Example 2Another example would be the adding a discount on a pizza order.

Let’s say, you have an order, and based on some criteria, you want to offer a discount to the customer.

There might be a variety of discounts which might be applicable at different times.

If you add a different type of a discount to each type of order, then in a static relationship, you need to maintain hundreds of classes.

Treating a discount as a decorator on an order makes the relationship dynamic.

Example 3A very good example where the Decorator pattern is implemented in Java is the Java I/O packages.

This is reflected in the way we create an input stream in an I/O program:You have a FileInputStream.

If you want to make it buffered, then add a decorator to it in the form of a BufferedInputStream.

If you want the buffered FileInputStream to have line numbers in addition, then add a decorator for a LineNumberInputStream.

SummaryDecorator Pattern enables you to add behavior to existing objects, at run time.

This allows the user of the interface to decide, how he/she wants to create the objects.

The drawback of this approach is the complexity involved in creating objects.

The user needs to understand a lot of classes and their relationships before being able to use the power of the Decorator.

The Facade PatternA Facade is a single class that represents an entire subsystem.

Let’s take the example of an event manager.

An event manager is the go-to person when you want to organize an event.

He/She would handle several aspects of an event such as the decorations, the food, sending out invitations to guests, the music arrangements, and similar things.

The event manager acts as the facade of the event organization subsystem.

Consider the case of a distributed system.

You typically have the need for multiple calls, across layers.

Take for instance, a system that offers the service for online book orders.

Whenever an order comes in, several things need to be taken care of, such as checking for the stock, reserving the order, accepting the payment, updating the stock, and generating the invoice.

We can create a single facade, such as the order interface, which would manage all incoming orders and provide an interface to the customer.

The advantage of using the Facade pattern is that it reduces the number of network calls, as well as reduces coupling among classes.

It succeeds in establishing a transaction boundary between communicating objects.

Facades, like services, are good hubs to implement transactions.

As long as the interface of the facade remains the same, the implementation details of the subsystem can change.

The Adapter PatternAn Adapter is used to match interfaces of different classes.

Let’s take the real world example of power adapters.

Problem : If you buy a mobile phone in India, it comes with a charger that only works with power sockets used in India.

If you take the same charger to the US for example, it will not work, as it will not fit into sockets there.

Solution : The solution is to use a travel adapter, to use with your charger when you travel.

You can plug in your charger into the travel adapter, and the travel adapter is used to connect to the socket in a particular country.

Similarly, when you try to talk to a system that uses a different message format or a language, you need an adapter to translate messages.

An interesting example is communication between a Java program and a web service.

Before sending out the data to the service, we need to convert the object into XML or JSON format.

We are implementing the Adapter pattern!The Flyweight PatternLet’s consider a few scenariosCreation of an object takes a lot of time and involves multiple instancesEach instance of an object occupies a lot of memorySome objects might be used several times across same application with same valuesIn these scenarios, you might not want to create a new instance everytime it is needed.

How about caching an instance and reusing it when needed?A Flyweight represents creating a fine-grained instance, that is being used for efficient sharing.

Example 1A really good real work example is the public switched telephone network (PSTN).

In the PSTN, there are always a limited number of lines, and for simplicity, let’s assume this number is 10.

However, there are thousands of customers that use these lines.

Since all 1000 customers would not make calls at about the same time, it is possible to efficiently switch calls coming in, among the existing 10 lines.

Example 2In the software world, a good example of Flyweight pattern is JDBC connections.

A connection pool is a set of connections to the database.

The application may be firing a lot of queries, but we don’t create a new connection whenever a new query comes in.

As soon as a query comes in, we match it to an available connection, and the query gets fired.

Once query execution is done, the connection is released back into the pool.

Using such a pool allows us to avoid the cost involved in creating and closing a connection.

Behavioral Design PatternsLet us now have a look at the behavioral design patterns.

The Chain Of Responsibility PatternThe Chain Of Responsibility Pattern represents a way of passing a request between a chain of objects.

Example 1The best example of this pattern can be seen in the exception handling mechanism of most programming languages.

Suppose you have a method1() calling method2(), and method2() in turn calls method3().

Assume that method3() throws an exception.

If method3() has no exception handling, then the exception is passed on to method2()to handle it.

If again method2() has no exception handling inside it, then the exception is passed on to method1().

If even method1() cannot handle it, it get thrown out of method1() as well.

Example 2Consider a real world example of a loan approval process.

A bank clerk has permissions to approve loans within a certain amount.

If the amount goes above that, then it goes to the supervisor.

The supervisor has a similar, albeit larger loan approval limit set for him.

If the loan amount exceeds that limit, then it goes to his supervisor, and so on.

SummaryWith Chain Of Responsibility, we have a chain of objects already ready, that wait to process requests.

When a new request enters the system, it goes to the first object in the chain to attempt processing.

Depending on the processing condition, the request travels up the chain and gets fully processed at some level, or maybe not processed at all.

The Iterator PatternThe Iterator pattern is one of the most simple design patterns.

You have a set of elements arranged in a collection, and you want to sequentially access those elements.

A good example of an Iterator is a TV remote, which has the “next” and “previous” buttons to surf TV channels.

Pressing the “next” button takes me one channel in the forward direction, and pressing the “previous” button takes me one channel in the backward direction.

In the programming works, examples of the Iterator class and the enhanced for loop in Java are examples of the Iterator pattern.

The State PatternThe State Pattern is used to alter an object’s behavior when its state changes.

Take a look at this Java example:Let’s take the example of a fan wall control.

The fan wall control controls the speed with with a fan rotates.

It has speed levels ranging from 0 to 5.

When it is at level 0, the fan does not rotate, and it rotates the fastest at level 5.

When you rotate the knob of the fan control, the level changes, and this causes the speed of the fan to change as well.

This is a classic case of a change in state (level) causing a change in behavior (speed).

A FanwallControl object is composed of a SpeedLevel object.

SpeedLevel is an interface that has four different implementations.

Initially, the level is at Off, and when yuo click rotate at that time, the new speed is at SpeedLevel1.

The happens successively, and if you rotate at SpeedLevel3, the level returns to Off.

In case you need to define an additional speed level, just add in a new class that implements the SpeedLevel interface, and implement its rotate method.

This is an excellent example that highlights the advantages of an extensible class.

The Strategy PatternThe strategy has the task of encapsulating an algorithm inside a class.

Let’s look at a Java code example:The class ComplexClass intends to perform a lot of complex logic within it.

One part of that logic is to sort a set of values.

One direct way would be to implement the entire sorting logic within ComplexClass.

This would make it very inflexible, since if you wanted to change the sorting logic tomorrow, that entire code needs to change.

When we use the Strategy pattern, we separate the algorithm of how the sorting is done, from ComplexClass.

We define an interface named Sortable, which has a method named sort().

Any actual sort algorithm is an implementation of Sortable, and needs to override sort()method.

Now, ComplexClass is given a particular Sortable implementation as a constructor argument.

ComplexAlgorithm does not care what exact sorting algorithm is being used; it is happy that that object implements the sort() method of Sortable.

A lot of flexibility results due to the use of the Strategy pattern.

You can dynamically change the strategy, and pass in the right one according to the context.

The Observer PatternThe Observer pattern is a way of notifying a change, to a number of classes.

If you are a fan of cricket, you may want to know whenever Sachin Tendulkar scores a century, so that you can celebrate.

All such similar people would register themselves to the event of Sachin scoring a century.

Each of these people is now an Observer for that event.

Whenever Sachin does score a century, a centralized program will notify each observer.

Another example is that of online bidding.

A group of bidders at an auction register themselves to receive notifications when a higher bid is placed.

As soon as a bid higher than the current one is placed, all the registered bidders get to know about it.

There are two main parts to implementing the Observer design pattern.

Registration — where the interested objects register themselves with the centralized program to receive notificationsNotification — where the registered observers receive notifications from the centralized programHere is a simple implementation of the Observer pattern:We have created an instance of SachinCenturyNotifier, and registered three fans with it.

Whenever Sachin scores a century, the call notifier.

sachinScoredACentury() would be made, and all three fans would be notified.

The Visitor PatternThe Visitor pattern allows us to add a new operation to a class, without changing the class.

There are a lot of scenarios when designing frameworks, where we don’t want other people to modify the code in the framework.

We want others to extend the functionality without touching the framework code.

They are allowed to add new operations, but not to change the existing operations.

The Visitor pattern allows you to do this.

A good real world example of the Visitor pattern is the operation of a taxi company.

As soon as a person calls a taxi company, and a cab is dispatched, the company accepts a visitor.

Once the visitor, or customer enters the taxi, he is no longer in control of where he is going.

The cab driver is now in control.

If we look at it as object oriented code, the driver class is in control of the customer class.

The driver class can add new operations on top of the customer/visitor.

The Template Method PatternThe Template Method pattern is used to defer the exact steps of an algorithm, to a subclass.

A good real world example of this pattern is how we go about creating a house plan.

Any good house plan consists of a floor plan, the foundation, plumbing, framing and wiring.

Such a plan is almost identical for each house.

If you were to model this in software, you could create a template class with this standard behavior defined.

A subclass could extend this and give actual implementations.

Such details could include the wooden flooring type, the wall paint colors, and any added wings as required.

A god example of the Template Method pattern is within the Spring framework, in the form of AbstractController:handleRequest() merely takes care of the basic things.

However, it leaves the lions share for the implementation to the method handleRequestInternal().

This method is defined by sub classes, where more specific logic can be implemented.

The Template Method pattern is all about doing the high level steps, and leaving the low level details to the sub classes.

The sub classes can override the low steps and provide their own implementation.

The Command PatternThe Command pattern encapsulates a command request as an object.

Let’s take a real world example.

Consider the scenario when a customer goes to a restaurant and wants to place an order for a meal.

The writer merely writes the order he gets on a piece of paper, and passes it on to the chef.

The chef executes the order, and then prepares the meal.

He passes the piece of paper to the manager.

The verbal order from the customer has now become a paper object.

This piece of paper is the command object.

The command object contains all the details needed to execute the request.

Similarly in object oriented programming, we can encapsulate all the details of a request into an object, and pass that object to execute it.

In web applications, when a user types in the details on a form, these details are captured in a single request object, which is then passed across.

The interface java.

lang.

Runnable is also a good example of how this pattern is implemented.

We create threads in Java by extending the Runnable interface, which has all the logic for execution in its start() method.

When we want to create and start a thread, we pass this class to the start() method.

The Memento MethodThe Memento pattern captures and later restores an object’s internal state.

A lot of games that we play offer the option of performing an intermediate save.

At a certain point in the game, you can save it and later come back to it.

To implement this, we need to save the internal states of the game objects, and restore them at a certain point in time.

This save-revert functionality can be implemented by using serialization in a language such as Java.

The memento pattern is very useful implementing undo/redo operations.

For example, if you are working on a text document in a word processor.

If at a certain point, you decide to undo changes, you can see each undo until you reach a point where you are satisfied.

You have now reverted to an earlier saved state of the document.

The Mediator PatternThe Mediator pattern is used to define simplified communication between classes.

Take the example of an Air Traffic Controller (ATC).

Let’s say that at any point of time in India, we have about 500 flights in air.

We need to decide the routes that each of these flights needs to take.

This also includes deciding the times at which each of these flights takes off and lands.

It would be a highly complex situation if each of these 500 flights needs to talk with each other and arrive at an acceptable schedule of routes.

That’s why we have the concept of an ATC.

The flights communicate with the ATC, and having assimilated the information from all the flights, the ATC makes the decisions and communicates them back the flights.

In the software world, a good example of the Mediator pattern is the ESB (Enterprise Service Bus).

In a distributed system, instead of letting the applications talk to each other, an application drops in a message to the ESB.

The ESB routes the request to the application that needs to handle the request.

It acts as the Mediator.

Do check out our video on the same topic:SummaryIn this article, we had an quick look over a variety of design patterns.

A design pattern is an approach to solve a problem in a given context.

We focused on understanding the context in which a particular pattern may be applicable with real world examples.

.

. More details

Leave a Reply