C # design mode-Factory mode (Factory)

Source: Internet
Author: User

Factory creates an object from several possible classes.

For example, if you create a communication class interface and have multiple implementations, you can use factory to create an object that implements the interface, and factory can create the appropriate object based on our selection.

UsingSystem;UsingSystem.Collections.Generic;UsingSystem.Linq;UsingSystem.Text;UsingSystem.Timers;Namespacedemo{PublicInterfaceicommunication {BOOL Send (Objectdata); }PublicClassserial:icommunication {PublicBOOL Send (ObjectData) {Console.WriteLine ("Send a data via serial port");ReturnTrue; } }PublicClasslan:icommunication {PublicBOOL Send (ObjectData) {Console.WriteLine ("Send a data through the network port");ReturnTrue; } }PublicClasscommunicationfactory {Public Icommunication Createcommunicationfactory (StringStyle) {Switch(style) {Case"Serial":ReturnNewSerial ();Case"Lan":ReturnNewLan (); }ReturnNullclass program {static void Main (string[] args) {Communicationfactory factory = new Communicationfactory (); Console.WriteLine ( " "); string input = Console.ReadLine (); object data = new object  

C # design mode-Factory mode (Factory)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.