抽象工厂模式 ( Abstract Factory Pattern )(2)

抽象工厂模式 ( Abstract Factory Pattern )

在抽象工厂模式中,接口是负责创建一个相关对象的工厂,不需要显式指定它们的类

每个生成的工厂都能按照工厂模式提供对象

抽象工厂模式属于创建型模式,它提供了一种创建对象的最佳方式。

白话解释:工厂里面生产工厂------工厂里面的产品有多类,每一类产品又包含多样产品

实例:
创建一个形状接口

package testDesignPatterns;

public interface Shape {
	   void draw();
	}

package testDesignPatterns;

public class Square implements Shape {

	   @Override
	   public void draw() {
	      System.out.println("画出一个正方形");
	   }
	}

package testDesignPatterns;

public class Circle implements Shape {

	   @Override
	   public void draw() {
	      System.out.println("画出一个圆圈");
	   }
	}

package testDesignPatterns;

public interface Color {
	   void fill();
	}

package testDesignPatterns;

public class Red implements Color {

	   @Override
	   public void fill() {
	      System.out.println("红颜色啦");
	   }
	}

package testDesignPatterns;

public class Green implements Color {

	   @Override
	   public void fill() {
	      System.out.println("绿颜色啦");
	   }
	}

package testDesignPatterns;

public class ShapeFactory extends AbstractFactory {

	   @Override
	   public Shape getShape(String shapeType){
	      if(shapeType == null){
	         return null;
	      }     
	      if(shapeType.equalsIgnoreCase("CIRCLE")){
	         return new Circle();
	      } 
	      else if(shapeType.equalsIgnoreCase("SQUARE")){
	         return new Square();
	      }
	      return null;
	   }

	   @Override
	   Color getColor(String color) {
	      return null;
	   }
	}


package testDesignPatterns;

public class ColorFactory extends AbstractFactory {

	   @Override
	   public Shape getShape(String shapeType){
	      return null;
	   }

	   @Override
	   Color getColor(String color) {
	      if(color == null){
	         return null;
	      }     
	      if(color.equalsIgnoreCase("RED")){
	         return new Red();
	      } else if(color.equalsIgnoreCase("GREEN")){
	         return new Green();
	      } 
	      return null;
	   }
	}

package testDesignPatterns;

public class FactoryProducer {
	   public static AbstractFactory getFactory(String choice){
	      if(choice.equalsIgnoreCase("SHAPE")){
	         return new ShapeFactory();
	      } else if(choice.equalsIgnoreCase("COLOR")){
	         return new ColorFactory();
	      }
	      return null;
	   }
	}
package testDesignPatterns;

public class TestAbstractFactoryPattern {
	   public static void main(String[] args) {

	      //获取形状工厂
	      AbstractFactory shapeFactory = FactoryProducer.getFactory("SHAPE");

	      //获取形状为 Circle 的对象
	      Shape shape1 = shapeFactory.getShape("CIRCLE");

	      //调用 Circle 的 draw 方法
	      shape1.draw();


	      //获取形状为 Square 的对象
	      Shape shape3 = shapeFactory.getShape("SQUARE");

	      //调用 Square 的 draw 方法
	      shape3.draw();

	      //获取颜色工厂
	      AbstractFactory colorFactory = FactoryProducer.getFactory("COLOR");

	      //获取颜色为 Red 的对象
	      Color color1 = colorFactory.getColor("RED");

	      //调用 Red 的 fill 方法
	      color1.fill();

	      //获取颜色为 Green 的对象
	      Color color2 = colorFactory.getColor("Green");

	      //调用 Green 的 fill 方法
	      color2.fill();

	      
	   }
	}

抽象工厂模式 ( Abstract Factory Pattern )(2)_第1张图片
说实话感觉这么写好麻烦,不过看起来很有代码感觉。。。

你可能感兴趣的:(设计模式,抽象工厂模式,java,servlet)