快速业务通道

Java设计模式之工厂方法模式 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23

Java设计模式之工厂方法模式

时间:2010-09-22

一 、工厂方法(Factory Method)模式

工厂方法模式的意义是定义一个创建产品对象的工厂接口,将实际创建工作推迟到子类当中。核心工厂类不再负责产品的创建,这样核心类成为一个抽象工厂角色,仅负责具体工厂子类必须实现的接口,这样进一步抽象化的好处是使得工厂方法模式可以使系统在不修改具体工厂角色的情况下引进新的产品。

二、 工厂方法模式角色与结构

抽象工厂(Creator)角色:是工厂方法模式的核心,与应用程序无关。任何在模式中创建的对象的工厂类必须实现这个接口。

具体工厂(Concrete Creator)角色:这是实现抽象工厂接口的具体工厂类,包含与应用程序密切相关的逻辑,并且受到应用程序调用以创建产品对象。在上图中有两个这样的角色:BulbCreator与TubeCreator。

抽象产品(Product)角色:工厂方法模式所创建的对象的超类型,也就是产品对象的共同父类或共同拥有的接口。在上图中,这个角色是Light。

具体产品(Concrete Product)角色:这个角色实现了抽象产品角色所定义的接口。某具体产品有专门的具体工厂创建,它们之间往往一一对应。

Java设计模式之工厂方法模式 - 编程入门网

Java设计模式之工厂方法模式(2)

时间:2010-09-22

三、一个简单的实例

// 产品 Plant接口 public interface Plant { } //具体产品PlantA,PlantB public class PlantA implements Plant {  public PlantA () {   System.out.println("create PlantA !");  }  public void doSomething() {   System.out.println(" PlantA do something ...");  } } public class PlantB implements Plant {  public PlantB () {   System.out.println("create PlantB !");  }  public void doSomething() {   System.out.println(" PlantB do something ...");  } } // 产品 Fruit接口 public interface Fruit { } //具体产品FruitA,FruitB public class FruitA implements Fruit {  public FruitA() {   System.out.println("create FruitA !");  }  public void doSomething() {   System.out.println(" FruitA do something ...");  } } public class FruitB implements Fruit {  public FruitB() {   System.out.println("create FruitB !");  }  public void doSomething() {   System.out.println(" FruitB do something ...");  } } // 抽象工厂方法 public interface AbstractFactory {  public Plant createPlant();  public Fruit createFruit() ; } //具体工厂方法 public class FactoryA implements AbstractFactory {  public Plant createPlant() {   return new PlantA();  }  public Fruit createFruit() {   return new FruitA();  } } public class FactoryB implements AbstractFactory {  public Plant createPlant() {   return new PlantB();  }  public Fruit createFruit() {   return new FruitB();  } }

四、工厂方法模式与简单工厂模式

工厂方法模式与简单工厂模式再结构上的不同不是很明显。工厂方法类的核心是一个抽象工厂类,而简单工厂模式把核心放在一个具体类上。

工厂方法模式之所以有一个别名叫多态性工厂模式是因为具体工厂类都有共同的接口,或者有共同的抽象父类。

当系统扩展需要添加新的产品对象时,仅仅需要添加一个具体对象以及一个具体工厂对象,原有工厂对象不需要进行任何修改,也不需要修改客户端,很好的符合了"开放-封闭"原则。而简单工厂模式在添加新产品对象后不得不修改工厂方法,扩展性不好。

工厂方法模式退化后可以演变成简单工厂模式。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号