Thursday 20 July 2017

Design Patterns | Factory Method Pattern (Virtual Constructor)

When we want to return one sub-class object from multiple sub-classes using an input, should use Factory design pattern. Factory class takes responsibility of instantiation the class (We can return Singleton instance from static factory method).
In Factory pattern, we create an object without exposing the creation logic to the client and refer to a newly created object using a common interface.



Example:
Coffee/Vending machine, give input from options and as per input coffee, lemon tea, plain milk or hot water will be an output.

package com.algorithm.forum.design.patterns;

enum Choice {
     Coffee, LemonTea, PlainWater;
}

interface Drink {
     void prepare();
}

class Coffee implements Drink {
     @Override
     public void prepare() {
           System.out.println("Coffee is prepared !!");
     }
}

class LemonTea implements Drink {
     @Override
     public void prepare() {
           System.out.println("Lemon Tea is prepared !!");
     }
}

class PlainWater implements Drink {
     @Override
     public void prepare() {
           System.out.println("Plain Water is prepared !!");
     }
}

class VedingMachine {
     private static String pck = "com.algorithm.forum.design.patterns.";

     /**
      * This method will return the Drink on the basis of required data.
      * Simple if else blocks are used here.
      */
     public static Drink getDrink(Choice choice) {
           Drink drink = null;
           if(choice==Choice.PlainWater) {
                drink = new PlainWater();
           } else if(choice==Choice.Coffee) {
                drink = new Coffee();
           } else if(choice==Choice.LemonTea) {
                drink = new LemonTea();
           }
           return drink;
     }

     /**
      * This method will create the Drink using Reflection as per the requested data.
      */
     public static Drink getDrinkReflection(Choice choice) {
           Drink drink = null;
           String className = pck +choice.toString();
           try {
                drink = (Drink) Class.forName(className).newInstance();
           } catch (InstantiationException | IllegalAccessException
                     | ClassNotFoundException e) {
           }
           return drink;
     }
}

public class FactoryPatternTest {
     public static void main(String[] args) {
           System.out.println("Create factory using if else:");
           Drink drink = VedingMachine.getDrink(Choice.Coffee);
           drink.prepare();

           System.out.println("\nCreate factory using Reflection:");
           drink = VedingMachine.getDrinkReflection(Choice.LemonTea);
           drink.prepare();
     }
}
Output:
Create factory using if else:
Coffee is prepared!!

Create factory using Reflection:
Lemon Tea is prepared!!

Benefits of Factory Method Pattern:
Factory Method Pattern provides an approach to code for interface rather than implementation and it provides the abstraction between implementation and client classes through inheritance.
Factory Method Pattern allows the sub-classes to choose the type of objects to create. We can easily change the implementation of sub-class because client program is unaware of this. It makes the code more robust, less coupled and easy to extend (client interacts solely with the resultant interface or abstract class).

Usage in JDK:
java.util.Calendar, ResourceBundle and NumberFormat getInstance() methods uses Factory pattern.
valueOf() method in wrapper classes like Boolean, Integer etc.
Spring and Hibernate frameworks.


5 comments:

  1. I can’t believe focusing long enough to research; much less write this kind of article. You’ve outdone yourself with this material without a doubt. It is one of the greatest contents. New Braunfels Dumpsters

    ReplyDelete
  2. With many construction sites finishing building projects left and right what with all the needed business infrastructures after the global financial meltdown, more and more construction site companies rely on construction workers to get the jobs done on time. While this demand in construction workers is a positive result, there are far worse consequences to reckon with. One such consideration is the need to understand and analyze the growing number of construction site accidents happening every year. شرکت آرین سازه

    ReplyDelete
  3. Auto repair, why does it cost so much? If you take your car to a reputable auto repair shop their services might not be the cheapest in town, but there are some valid reasons for this. The old adage "Would you go to the low bidder for brain surgery?" really does apply to auto repair shops as well. Cheap service today may just cost you more in the long run. Sanitary Hose

    ReplyDelete
  4. Real Estate Investing is not about doing flips, No Money Down or even 'buy and hold'. So many people have been LIED to about Real Estate investments, and I, for one, think it's time to 'get real' about your Real Estate Investing. This article describes just what these lies are, where they come from and how you can stop them before they stop you - and your successful real estate investing career! fha loan limits las vegas

    ReplyDelete
  5. I wanted to thank you for this excellent read!! I definitely loved every little bit of it. I have you bookmarked your site to check out the new stuff you post. click to read more

    ReplyDelete

Related Posts Plugin for WordPress, Blogger...