Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / C#
Tip/Trick

Illustrating Factory pattern with a very basic example

Rate me:
Please Sign up or sign in to vote.
4.80/5 (33 votes)
2 Oct 2012CPOL2 min read 131.4K   2.5K   28   12
A simplified explanation of Factory pattern with sample C# .NET code.

Introduction

The factory pattern method is a popularly used design pattern and it is very useful to restrict clients from knowing the actual business logic methods, it is useful to create a decoupled system, and it is useful to eliminate object creation in a client environment.

This article explains how we can achieve these problems with a small example.

Problem

For example we have a scenario where based on user input we need to call particular class methods. I have a customer input screen. He enters his choice whether they want to buy a bike or a car. Normally we get input from the user and based on that will create an object in the client class and call those methods like below.

C#
//
// customer enters their choice
//
If (choice == "Car")
{
	// call car class and it’s methods
	Car c = new car();
	c.buy();
}
If (choice == "bike")
{
	// call bike class and it’s methods
	Bike b = new Bike();
	b.buy()
}
...
  1. In case in future if there is any other vehicle added then we need to change the client functionality.
  2. The above client code depicts that there are classes Car, Bike, and a method Buy. There is no security at the client side.
  3. Need to use the new keyword in client classes.

To avoid these problems Factory pattern is used.

Solution

Problem 1

Create a new interface to depict methods, for example, in our scenario, it is Buy(). Using this interface it will solve problems 1 and 2.

C#
//
// Interface
//
public interface IChoice
{
    string Buy();
}

A new class will be added and this class we will be called factory class. This class sits between the client class and the business class and based on user choice it will return the respective class object through the interface. It will solve problem 3.

C#
//
// Factory Class
//
public class FactoryChoice
{
    static public IChoice getChoiceObj(string cChoice)
     {
        IChoice objChoice=null;
        if (cChoice.ToLower() == "car")
        {
            objChoice = new clsCar();
        }
        else if (cChoice.ToLower() == "bike")
        {
            objChoice = new clsBike();
        }
        else
        {
            objChoice = new InvalidChoice();
        }
        return objChoice;
    }
}
 
//Business classes
//Car
public class clsBike:IChoice
{
    #region IChoice Members
 
    public string Buy()
    {
        return ("You choose Bike");
    }
 
    #endregion
}
 
//Bike
public class clsCar:IChoice
{
 
    #region IChoice Members
 
    public string Buy()
    {
        return ("You choose Car");
    }
 
    #endregion
}

From the client class call the factory class object and it will return the interface object. Through the interface object we will call the respective method.

C#
//Client class
IChoice objInvoice;
objInvoice = FactoryClass.FactoryChoice.getChoiceObj(txtChoice.Text.Trim());
MessageBox.Show(objInvoice.Buy());

In future if we need to add a new vehicle then there is no need to change the client class, simply return that object using the factory class.

Advantages

Suppose we want to add a decoupled structure and don’t want to disturb the client environment again and again, this pattern is very useful. The factory class will take all the burden of object creations.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
United States United States
Experienced Lead developer having 17+ years with a passion for developing innovative programs that expedite the efficiency and effectiveness of organizational success. Well-versed in technology and writing code to create systems that are reliable and user-friendly. A skilled leader who has the proven ability to motivate, educate, and manage a team of professionals to build software programs and effectively track changes. Confident communicator, strategic thinker, and innovative creator to develop software that is customized to meet a company’s organizational needs and further its success.

Comments and Discussions

 
QuestionGood article but having a doubt Pin
Member 1107212616-Oct-17 3:45
Member 1107212616-Oct-17 3:45 
GeneralMy vote of 5 Pin
Member 43208442-Jan-16 22:58
Member 43208442-Jan-16 22:58 
GeneralMy vote of 5 Pin
acdilag4-Sep-15 20:42
acdilag4-Sep-15 20:42 
GeneralMy vote of 1 Pin
raiserle13-May-15 0:23
raiserle13-May-15 0:23 
GeneralHi Rajesh Pin
RamaDakka25-Dec-14 21:56
RamaDakka25-Dec-14 21:56 
GeneralVery Nice Article for Beginners Pin
itsgkiran23-Dec-14 2:59
itsgkiran23-Dec-14 2:59 
GeneralMy vote of 5 Pin
Md.Mobidul Islam(Moin)13-Oct-14 23:42
professionalMd.Mobidul Islam(Moin)13-Oct-14 23:42 
QuestionOne Question Pin
girishmeena28-Mar-14 10:34
girishmeena28-Mar-14 10:34 
GeneralMy Vote of 5 Pin
girishmeena22-Mar-14 10:16
girishmeena22-Mar-14 10:16 
GeneralMy vote of 5 Pin
lahiru madusanka12318-Aug-13 22:50
lahiru madusanka12318-Aug-13 22:50 
GeneralMy vote of 4 Pin
Mohan.dotnet19-Jun-13 3:55
Mohan.dotnet19-Jun-13 3:55 
GeneralMy vote of 5 Pin
Ankur11june22-Jan-13 2:34
Ankur11june22-Jan-13 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.