"simple factory pattern" Code Answer's

You're definitely familiar with the best coding language Whatever that developers use to develop their projects and they get all their queries like "simple factory pattern" answered properly. Developers are finding an appropriate answer about simple factory pattern related to the Whatever coding language. By visiting this online portal developers get answers concerning Whatever codes question like simple factory pattern. Enter your desired code related query in the search bar and get every piece of information about Whatever code related question on simple factory pattern. 

simple factory pattern

By Grotesque GorillaGrotesque Gorilla on Jul 06, 2020
enum FanType
{
    TableFan,
    CeilingFan,
    ExhaustFan
}

interface IFan
{
    void SwitchOn();
    void SwitchOff();
}

class TableFan : IFan {.... }

class CeilingFan : IFan {.... }

class ExhaustFan : IFan {..... }

interface IFanFactory
{
    IFan CreateFan(FanType type);
}

class FanFactory : IFanFactory
{
    public IFan CreateFan(FanType type)
    {
        switch (type)
        {
            case FanType.TableFan:
                return new TableFan();
            case FanType.CeilingFan:
                return new CeilingFan();
            case FanType.ExhaustFan:
                return new ExhaustFan();
            default:
                return new TableFan();
        }
    }
}

//The client code is as follows:

static void Main(string[] args)
{
        IFanFactory simpleFactory = new FanFactory();
        // Creation of a Fan using Simple Factory
        IFan fan = simpleFactory.CreateFan(FanType.TableFan);
        // Use created object
        fan.SwitchOn();

        Console.ReadLine();
 }

Source: www.codeproject.com

Add Comment

0

All those coders who are working on the Whatever based application and are stuck on simple factory pattern can get a collection of related answers to their query. Programmers need to enter their query on simple factory pattern related to Whatever code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about simple factory pattern for the programmers working on Whatever code while coding their module. Coders are also allowed to rectify already present answers of simple factory pattern while working on the Whatever language code. Developers can add up suggestions if they deem fit any other answer relating to "simple factory pattern". Visit this developer's friendly online web community, CodeProZone, and get your queries like simple factory pattern resolved professionally and stay updated to the latest Whatever updates. 

Whatever answers related to "simple factory pattern"

View All Whatever queries

Whatever queries related to "simple factory pattern"

simple factory pattern Simple factory Design pattern in PHP page factory in selenium PHP Fatal error: Call to undefined function factory() in Psy Shell code on line 1, LARAVEL 8 Issue solved difference between factory and dataprovider factory vs dataprovider User::factory()->create( advantages of page factory in selenium Bean Factory vs application context page factory class in selenium hibernate session factory Type mismatch. Required: CallAdapter.Factory! Found: MoshiConverterFactory! azure data factory rest api pagination with sharepoint list abstract factory patrn factory annotation in testng what is page factory complex pattern in c Design pattern vars ignore pattern underscore what is page object model design pattern phone number regex pattern switzerland number pattern in c wap to print following pattern pom design pattern Which of the following operators is used for pattern matching? Pick ONE option IS NULL operator ASSIGNMENT operator LIKE operator NOT operator Clear Selection How is the pattern matching done in the SQL? Pattern Matcher singleton design pattern example password pattern regex android strategy pattern definitiom change pattern test mocha how to use pom design pattern python list all files of directory in given pattern snowflake list stage with pattern public boolean find(String path, String pattern) TEXT pattern generator for whatsapp group find a class name that maches a pattern latin is simple simple present beispiel WebRTC flow of function calls for video call in vue and pusher simple peer heroku.com auto deploy github simple html website simple jest test cases for array of objects if simple product display enquiry button woocommerce code your own default value to select simple form for simple plane fps limit simple scrapy spider file simple viewmodek simple mail service error 401 problem accessing '/1.1/statuses/simple.json?stall_warnings=true simple way to power on ec2 instance how to make a simple physics engine simple for loop simple linear regression machine learning

Browse Other Code Languages

CodeProZone