Click here to Skip to main content
Click here to Skip to main content

C#:Abstract Factory Pattern

By , 18 Jun 2007
 

Introduction

Design patterns make it easier to reuse successful designs and architectures.
Design patterns help you choose design alternatives that make a system reusable and avoid alternatives that compromise reusability.
An abstract factory provides an interface for creating families of related objects without specifying their concrete classes

The Abstract Factory pattern let's us group like factory classes together. In the example below we group a factory for creating Indian Bread and a factory for creating American bread together and then we decide what "kind of" bread to create based on the information which we will get at run time.

Using the code

And below there is an implementation in C#:

//Let's define type of bread bases
public enum BreadBase
{
     HotIndianMasalaBase,
     PunjabiTadkaBase,
     ItalianCheeseBase,
     VeggieBase,
}
//This is a breadfactory where people visit to get their favorite bread bases
public interface BreadFactory
{
    Bread GetBread(BreadBase BreadBase);
}

//The abstract bread
public interface Bread
{
    void Bake();
}

//create concrete classes

public class HotIndianMasalaBread :Bread
{
    public void Bake()
    {
        Console.WriteLine ("For you::Hotindian Masala base Bread.");
    }
}
public class VeggieBread : Bread
{
    public void Bake()
    {
        Console.WriteLine("For you::Veggie base Bread.");
    }
}

public class ItalianCheeseBread : Bread
{
    public void Bake()
    {
        Console.WriteLine("For you::Italian cheese base Bread.");
    }
}
public class PunjabiTadkaBaseBread : Bread
{
    public void Bake()
    {
        Console.WriteLine("For you::Punjabi tadka base bread.");
    }
}
//Lets create bread factories aka concrete classes

public class AmericanBreadFactory :BreadFactory
{
    public Bread GetBread(BreadBase BreadBase)
    {
        Bread vBread = null;
        switch (BreadBase)
        {
            case BreadBase.VeggieBase:
                vBread = new VeggieBread();
                break;
            case BreadBase.ItalianCheeseBase:
                vBread = new ItalianCheeseBread();
                break;
        }
        return vBread;
    }
}

public class IndianBreadFactory :BreadFactory
{
    public Bread GetBread(BreadBase BreadBase)
    {
        Bread vBread = null;
        switch (BreadBase)
        {
            case BreadBase.HotIndianMasalaBase:
                vBread = new HotIndianMasalaBread();
                break;
            case BreadBase.PunjabiTadkaBase:
                vBread = new PunjabiTadkaBaseBread();
                break;
        }
        return vBread;
    }
}

//lets order breads

class Program
{
    static void Main(string[] args)
    {
    //example of abstract factory
    AmericanBreadFactory vAmericanBread = new AmericanBreadFactory();
    Bread vBread = vAmericanBread.GetBread(BreadBase.VeggieBase);
    vBread.Bake();

    //lets bak indian punjabi tadka bread
    IndianBreadFactory vIndianBreadFactory = new IndianBreadFactory();
    Bread vIndianBread = vIndianBreadFactory.GetBread(BreadBase.PunjabiTadkaBase);
    vIndianBread.Bake();
    }
} 
//Himachalsoft.com:: my website

License

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

About the Author

PrashantRishu
Web Developer
India India
Member
ASP.NET developer working in India.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionAbstract Factory explained with Simple and elegant examplememberMember 960340223 Nov '12 - 14:41 
QuestionI'm not an expert, but this example looks like a Factory Pattern. SorrymemberYogesh Desai27 Oct '12 - 5:04 
GeneralMy vote of 1memberhuanhvhd27 Jul '11 - 0:27 
GeneralRe: My vote of 1memberakhtar7868 Sep '11 - 23:33 
GeneralRe: My vote of 1memberdhirenipatel7 Feb '12 - 7:42 
GeneralMy vote of 5membersivanphani23 Jun '11 - 8:06 
GeneralMy vote of 5memberVishal Varshney1 Jun '11 - 21:16 
Perfect, to the point example.
GeneralMy vote of 4membershahshi1 Feb '11 - 17:34 
GeneralNice!memberNAGG21 Jan '09 - 11:10 
GeneralGreat Examplemembermyrtle30317 Sep '07 - 7:43 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 18 Jun 2007
Article Copyright 2007 by PrashantRishu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid