Design Mode-prototype mode

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

Namespace Clonepattern
{
Class Mainclass
{
Public   Static   Void Main ( String [] ARGs)
{
Conscreteprototype1 p1 = New Conscreteprototype1 ( " I " );
Conscreteprototype1 C1 = (Conscreteprototype1) p1.clone ();
Console. writeline (c1.id );

Conscreteprototype2 p2 = New Conscreteprototype2 ( " II " );
Conscreteprototype2 C2 = (Conscreteprototype2) p2.clone ();
Console. writeline (c2.id );

Console. Read ();
}
}
Public   Abstract   Class Prototype
{
Private   String _ Id;
Public   String ID
{
Get { Return _ Id ;}
Set {_ Id = Value ;}
}
Public Prototype ( String ID)
{
_ Id = ID;
}
Public   Abstract Prototype clone ();
}
Public   Class Conscreteprototype1: Prototype
{
Public Conscreteprototype1 ( String ID ): Base (ID)
{

}
Public   Override Prototype clone ()
{
Return (Prototype) This . Memberwiseclone ();

}
}
Public   Class Conscreteprototype2: Prototype
{
Public Conscreteprototype2 ( String ID ): Base (ID)
{

}
Public   Override Prototype clone ()
{
Return (Prototype) This . memberwiseclone ();

}< BR >}

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.