Design Pattern-factory Method

Source: Internet
Author: User

 

/*
* Created by sharpdevelop.
* User: Anson. Wu
* Date: 2007-4-5
* Time: 10: 55
*
* To change this template use tools | options | coding | edit standard headers.
  */
Using System;

Namespace Structural
{
Class Mainclass
{
Public   Static   Void Main ( String [] ARGs)
{
Product [] Product = New Product [ 2 ];
Product [ 0 ] = New Creatora (). factorymethod ();
Product [ 1 ] = New Creatorb (). factorymethod ();
Console. Read ();
}
}
//
Public   Abstract Class Product
{

}
Public   Class Producta: Product
{
Public Producta ()
{
Console. writeline ( " Producta BEEN CREATE " );
}
}
Public   Class Productb: Product
{
Public Productb ()
{
Console. writeline ( " Productb BEEN CREATE " );
}
}
Public   Abstract   Class Creator
{
Public   Abstract Product factorymethod ();

}
Public   Class Creatora: Creator
{
Public   Override Product factorymethod ()
{
Return   New Producta ();
}
}
Public   Class Creatorb: Creator
{
Public   Override Product factorymethod ()
{
Return   New Productb ();
}
}
}

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.