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

简单工厂模式

1. 目的
工厂模式就是专门负责将大量有共同接口的类实例化,而且不必事先知道每次是要实例化哪一个类的模式。它定义一个用于创建对象的接口,由子类决定实例化哪一个类。
2 . 简单工厂模式的结构
https://i-blog.csdnimg.cn/blog_migrate/d4323c8156b71b0675d08c42ac1327b4.gif

3. 一个简单例子
java 代码
  1. // 产品接口
  2. public interface Product {
  3. public void getName();
  4. }
  5. // 具体产品A
  6. public class ProductA implements Product {
  7. public void getName() {
  8. System.out.println(" I am ProductA ");
  9. }
  10. }
  11. // 具体产品B
  12. public class ProductB implements Product {
  13. public void getName() {
  14. System.out.println(" I am ProductB ");
  15. }
  16. }
  17. // 工厂类
  18. public class ProductCreator {
  19. public Product createProduct(String type) {
  20. if (" A ".equals(type)) {
  21. return new ProductA();
  22. }
  23. if (" B ".equals(type)) {
  24. return new ProductB();
  25. } else
  26. return null;
  27. }
  28. public static void main(String[] args) {
  29. ProductCreator creator = new ProductCreator();
  30. creator.createProduct(" A ").getName();
  31. creator.createProduct(" B ").getName();
  32. }
  33. }
4. 小结工厂模式的适用范围
• 在编码时不能预见需要创建哪一种类的实例。
• 一个类使用它的子类来创建对象。
• 开发人员不希望创建了哪个类的实例以及如何创建实例的信息暴露给外部程序。

抽象工厂模式

1. 抽象工厂模式可以说是简单工厂模式的扩展,它们主要的区别在于需要创建对象的复杂程度上。
在抽象工厂模式中,抽象产品可能是一个或多个,从而构成一个或多个产品族。 在只有一个产品族的情况下,抽象工厂模式实际上退化到工厂方法模式。
2. 抽象工厂模式的结构

https://i-blog.csdnimg.cn/blog_migrate/784869f71398b122971e48cf1509f842.gif

3. 一个简单例子

java 代码
  1. // 产品 Plant接口
  2. public interface Plant {
  3. }
  4. // 具体产品PlantA,PlantB
  5. public class PlantA implements Plant {
  6. public PlantA() {
  7. System.out.println(" create PlantA ! ");
  8. }
  9. public void doSomething() {
  10. System.out.println(" PlantA do something ");
  11. }
  12. }
  13. public class PlantB implements Plant {
  14. public PlantB() {
  15. System.out.println(" create PlantB ! ");
  16. }
  17. public void doSomething() {
  18. System.out.println(" PlantB do something ");
  19. }
  20. }
  21. // 产品 Fruit接口
  22. public interface Fruit {
  23. }
  24. // 具体产品FruitA,FruitB
  25. public class FruitA implements Fruit {
  26. public FruitA() {
  27. System.out.println(" create FruitA ! ");
  28. }
  29. public void doSomething() {
  30. System.out.println(" FruitA do something ");
  31. }
  32. }
  33. public class FruitB implements Fruit {
  34. public FruitB() {
  35. System.out.println(" create FruitB ! ");
  36. }
  37. public void doSomething() {
  38. System.out.println(" FruitB do something ");
  39. }
  40. }
  41. // 抽象工厂方法
  42. public interface AbstractFactory {
  43. public Plant createPlant();
  44. public Fruit createFruit();
  45. }
  46. // 具体工厂方法
  47. public class FactoryA implements AbstractFactory {
  48. public Plant createPlant() {
  49. return new PlantA();
  50. }
  51. public Fruit createFruit() {
  52. return new FruitA();
  53. }
  54. }
  55. public class FactoryB implements AbstractFactory {
  56. public Plant createPlant() {
  57. return new PlantB();
  58. }
  59. public Fruit createFruit() {
  60. return new FruitB();
  61. }
  62. }
4. 小结
在以下情况下,应当考虑使用抽象工厂模式。
  首先,一个系统应当不依赖于产品类实例被创立,组成,和表示的细节。这对于所有形态的工厂模式都是重要的。
  其次,这个系统的产品有多于一个的产品族。
  第三,同属于同一个产品族的产品是设计成在一起使用的。这一约束必须得在系统的设计中体现出来。
  最后,不同的产品以一系列的接口的面貌出现,从而使系统不依赖于接口实现的细节。
  其中第二丶第三个条件是我们选用抽象工厂模式而非其它形态的工厂模式的关键性条件。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值