Factory Method Pattern

November 5th, 2009

A factory method pattern is a creational pattern. It is used to instantiate an object from one among a set of classes based on a logic.

Assume that you have a set of classes which extends a common super class or interface. Now you will create a concrete class with a method which accepts one or more arguments. This method is our factory method. What it does is, based on the arguments passed factory method does logical operations and decides on which sub class to instantiate. This factory method will have the super class as its return type. So that, you can program for the interface and not for the implementation. This is all about factory method design pattern.

Sample factory method design pattern implementation in Java API

For a reference of how the factory method design pattern is implemented in Java, you can have a look at SAXParserFactory. It is a factory class which can be used to intantiate SAX based parsers to pares XML. The method newInstance is the factory method which instantiates the sax parsers based on some predefined logic.

Block diagram for The Design Pattern

factorydesignpattern

Sample Java Source Code for Factory Method Design Pattern

Based on comments received from users, I try to keep my sample java source code as simple as possible for a novice to understand.

Base class:

package com.javapapers.sample.designpattern.factorymethod;

//super class that serves as type to be instantiated for factory method pattern
public interface Pet {

 public String speak();

}

First subclass:

package com.javapapers.sample.designpattern.factorymethod;

//sub class 1 that might get instantiated by a factory method pattern
public class Dog implements Pet {

 public String speak() {
 return "Bark bark...";
 }
}

Second subclass:

package com.javapapers.sample.designpattern.factorymethod;

//sub class 2 that might get instantiated by a factory method pattern
public class Duck implements Pet {
 public String speak() {
 return "Quack quack...";
 }
}

Factory class:

package com.javapapers.sample.designpattern.factorymethod;

//Factory method pattern implementation that instantiates objects based on logic
public class PetFactory {

 public Pet getPet(String petType) {
 Pet pet = null;

 // based on logic factory instantiates an object
 if ("bark".equals(petType))
 pet = new Dog();
 else if ("quack".equals(petType))
 pet = new Duck();
 return pet;
 }
}

Using the factory method to instantiate

package com.javapapers.sample.designpattern.factorymethod;

//using the factory method pattern
public class SampleFactoryMethod {

 public static void main(String args[]){

 //creating the factory
 PetFactory petFactory = new PetFactory();

 //factory instantiates an object
 Pet pet = petFactory.getPet("bark");

 //you don't know which object factory created
 System.out.println(pet.speak());
 }

}

Output of the above sample program for Factory Method Pattern

Bark bark

Download Java Source Code For Factory Method Pattern

Nice!!. Though I am using all but when i try to related to design pattern, normally it looks me like big sky infront of me.

But you explined neatly.

Thanks for your effort and time for writing this ariticle.

Thanks
Thamayanthi

Thamayanthi on November 6th, 2009 12:30 pm

Factory is one of the widely used design patterns. Happy that you are able to relate it. Good luck Thamayanthi!

Tutorials and articles available on internet try to be comprehensive and consequently confuses the reader. I try to keep my definitions as simple as possible for users to get the fundamental understanding right. So that, over experience they can build on top of it.

Design patterns are not a complex subject. With appropriate tutorials it will be interesting to learn and use.

Joe on November 6th, 2009 1:41 pm

actualy i was using this design pattern only for creating object but not for return the object of super class based on logic.
so it is now clear to use this design pattern

thanks

Rampratap on November 7th, 2009 10:03 am

Best wishes Rampratap.

Joe on November 7th, 2009 10:33 am

[...] To keep things simple you can understand it like, you have a set of ‘related’ factory method design pattern. Then you will put all those set of simple factories inside a factory pattern. So in turn you need [...]

Abstract Factory Pattern&hellip on November 11th, 2009 9:31 pm

This is good article. explained in very clear understanding way.

Thanks for your post.

Ram on February 4th, 2010 12:34 pm

Thanks

Simple and Nice explanation. Able to understand the basic defenition of the Factory methods.

dilip on February 18th, 2010 6:24 am

Nice and simplified explaination of a good design pattern..Good effort

Prachi Gupta on March 4th, 2010 5:31 pm





hidden and gravatar enabled.