Design Patterns learning notes -- Abstract Factory)

Source: Internet
Author: User

I am quite touched by the design model of terrylee. I will take the following notes for future reference.

Code

    //  -----------------------------------------------
// Abstract Factory is used to process the creation of composite objects.
// Similar to the factory method, class creation is pushed to the client, and the Creation logic is pushed to the client.
// -----------------------------------------------

# Region Product

# Region Simple Product

Public Abstract Class Monitor
{
}

Public Abstract Class Box
{
}

# Endregion

# Region Composite products

Public Abstract Class PC
{
Public Abstract Monitor createmonitor ();

Public Abstract Box createbox ();
}

Public Class Typeapc: PC
{

Public Override Monitor createmonitor ()
{
Throw New Notimplementedexception ();
}

Public Override Box createbox ()
{
Throw New Notimplementedexception ();
}
}

Public Class Typebpc: PC
{
Public Override Monitor createmonitor ()
{
Throw New Notimplementedexception ();
}

Public Override Box createbox ()
{
Throw New Notimplementedexception ();
}
}

# Endregion

# Endregion

# Region Factory

Public Class Pcfactory
{
Public Monitor pen;

Public Box box;

Public Void Creatpc (PC some)
{
Pen = Some. createmonitor ();
Box = Some. createbox ();
}
}

# Endregion

# Region Client

Public Class App
{
Public Static Void Main ( String [] ARGs)
{
String Strfactoryname = " Typeapc " ;

PC;

PC = (PC) Assembly. Load ( " Factorymethod " ). Createinstance ( " Factorymethod. " + Strfactoryname );

Pcfactory Factory = New Pcfactory ();

Factory. creatpc (PC );
}
}

# Endregion

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.