設計模式C#描述之——簡單原廠模式 .

來源:互聯網
上載者:User

簡單原廠模式是類的建立模式,又叫做靜態Factory 方法模式。就是由一個工廠類根據傳入的參量決定建立出哪一種產品類的執行個體。一般涉及到三種角色:

工廠類:擔任這個角色的是Factory 方法模式的核心,含有與應用緊密相關的商業邏輯。工廠類在用戶端的直接調用下建立產品對象,它往往由一個具體的類實現。
抽象產品角色:擔任這個角色的類是由Factory 方法模式所建立的對象的父類,或她們共同擁有的介面。一般由介面或抽象類別實現。
具體產品角色:Factory 方法模式所建立的任何對
象都是這個角色的執行個體,由具體類實現。

簡單原廠模式優缺點:
模式的核心是工廠類,這個類負責產品的建立,而用戶端可以免去產品建立的責任,這實現了責任的分割。但由於工廠類集中了所有產品建立邏輯的,如果不能正常工作的話會對系統造成很大的影響。如果增加新產品必須修改工廠角色的源碼。

以園丁種植水果為例討論該模式的具體實現:
Fruit 水果介面,規定水果具有的一些共同特性
Apple 蘋果類 派生自Fruit介面
Strawberry 草莓類 派生自Fruit介面
FruitGardener 園丁類 負責草莓與蘋果的建立工作。
當Client要建立水果(蘋果或草莓對象)的時候調用園丁類的factory方法建立: 

代碼如下:
Fruit.cs
namespace Simple_Factory
{
public interface Fruit
{
//生長
void grow();
//收穫
void harvest();
//種植
void plant();
}
}
Apple.cs
namespace Simple_Factory
{
public class Apple:Fruit
{
public Apple()
{
}
#region Fruit 成員
public void grow()
{
Console.WriteLine ("Apple is growing.......");
}
public void harvest()
{
Console.WriteLine ("Apple is harvesting.......");
}
public void plant()
{
Console.WriteLine ("Apple is planting.......");
}
#endregion
}
}
Strawberry.cs
namespace Simple_Factory
{
public class Strawberry:Fruit
{
public Strawberry()
{
}
#region Fruit 成員
public void grow()
{
Console.WriteLine ("Strawberry is growing.......");
}
public void harvest()
{
Console.WriteLine ("Strawberry is harvesting.......");
}
public void plant()
{
Console.WriteLine ("Strawberry is planting.......");
}
#endregion
}
}
FruitGardener.cs
namespace Simple_Factory
{
public class FruitGardener
{
//靜態Factory 方法
public static Fruit factory(string which)
{
if(which.Equals ("Apple"))
{
return new Apple();
}
else if(which.Equals ("Strawberry"))
{
return new Strawberry ();
}
else
{
return null;
}
}
}
}
Client.cs
using System;
namespace Simple_Factory
{
class Client
{
[STAThread]
static void Main(string[] args)
{
Fruit aFruit=FruitGardener.factory ("Apple");//creat apple
aFruit.grow ();
aFruit.harvest ();
aFruit.plant();
aFruit=FruitGardener.factory ("Strawberry");//creat strawberry
aFruit.grow ();
aFruit.harvest ();
aFruit.plant();
}
}
}
輸出如下:
Apple is growing.......
Apple is harvesting.......
Apple is planting.......
Strawberry is growing.......
Strawberry is harvesting.......
Strawberry is planting....... 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.