Factory Design Pattern with Example in Java

[13614 views]




Implementing Factory Design Pattern in Java

What is Factory Design Pattern?

The Factory Design Pattern is a part of Creational Design Patterns and what it describes is a generic way for creating objects and initializing it. It is commonly implemented as a function or method which is used to generate other objects.

The key concept of the Factory pattern is to abstract the way an object or a group of related objects are created and instantiated for a specific purpose. The point of this abstraction is to avoid coupling an implementation with particular classes or the way that each object instance should be created and configured. The outcome is an implementation that functions as an abstract way for object creation and initialization, which in turn follows the concept of Separation of Concerns.

In simple terms, One class acts as a Factory class, which is a singleton class, it acts as the Object creator for another class. For example, CarFactory creates many Car objects.

Simple Factory Design Pattern Example in Java:

CarFactory.java

package com.tatamotors.vehicles; public class CarFactory { private CarFactory() { System.out.println("CarFactory Created"); } private static CarFactory cf=new CarFactory(); public static CarFactory getInstance() { return cf; } public Car newCar() { return new Car(); } }

Car.java

package com.tatamotors.vehicles; public class Car { private int carId; private String model; private double price; Car() { System.out.println("Car Created"); } public int getCarId() { return carId; } public void setCarId(int carId) { this.carId = carId; } public String getModel() { return model; } public void setModel(String model) { this.model = model; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } @Override public String toString() { return "Car [carId=" + carId + ", model=" + model + ", price=" + price + "]"; } }

Explanation:

In the above code, we have created two java Files, CarFactory.java and Car.java
CarFactory.java is the code which acts as a Factory Class as it has method newCar() to create an object of Car Class. As you have noticed, CarFactory Class itself is a singleton Class,(For more information on Singleton Pattern, visit here) so there would be only one CarFactory object.

If you want to create an object of Car, you will have to use CarFactory Class instance and call newCar() method of CarFactory to create an instance of Car which returns a Car object.


FactoryDemo.java

package com.tatamotors; import com.tatamotors.vehicles.Car; import com.tatamotors.vehicles.CarFactory; public class FactoryDemo { public static void main(String[] args) { CarFactory carFactory=CarFactory.getInstance(); Car audi=carFactory.newCar(); audi.setCarId(1001); audi.setModel("a60"); audi.setPrice(1000000); System.out.println(audi); Car hyundai=carFactory.newCar(); hyundai.setCarId(1002); hyundai.setModel("h20"); hyundai.setPrice(300000); System.out.println(hyundai); } }

In above File, FactoryDemo.java which has main method, we first fetched the instance of CarFactory Class and then using CarFactory object we created a new Car instance by calling newCar() method i.e in above example "Car audi=carFactory.newCar();".

If you still have any doubts about Factory Design Pattern, please leave a comment. We will be happy to discuss it with you.

                 



Clear Any Java Interview by Reading our Ebook Once.


Can you clear Java Interview?



Comments










Search Anything:

Sponsored Deals ends in



Interesting Technical Quizzes:

Search Tags

    Factory Design Pattern in Java

    Implementing Factory Design Pattern in Java