概述
抽象工厂 (abstract factory) 模式又称 Kit 模式,由一个抽象工厂类、多个抽象产品类以及这些抽象类的多个具体子类构成。每个具体工厂类可以创建每个抽象产品类的某个具体子类。
优点:高内聚低耦合,符合“开闭原则”。
缺点:难以添加新的产品类,这涉及到更改抽象工厂类,这个类的修改涉及到其他所有类。
interface ProductA {
show();
}
class ProductA1 implements ProductA {
show() {
//
}
}
class ProductA2 implements ProductA {
show() {
//
}
}
interface ProductB {
use();
}
class ProductB1 implements ProductB {
use() {
//
}
}
class ProductB2 implements ProductB {
use() {
//
}
}
interface Factory {
ProductA createA();
ProductB createB();
}
class Factory1 implements Factory {
public static ProductA createA() {
return new ProductA1();
}
public static ProductB createB() {
return new ProductB1();
}
}
class Factory2 implements Factory {
public static ProductA createA() {
return new ProductA2();
}
public static ProductB createB() {
return new ProductB2();
}
}
public class Test {
public static void main(String[] args) {
Factory f;
ProductA pa;
ProductB pb;
f = new Factory1(); // or get from some file
pa = f.createA();
pb = f.createB();
pa.show();
pb.use();
}
}
图示
参考
标签:implements,ProductB,ProductA,工厂,public,抽象,new,class,04 From: https://www.cnblogs.com/xdreamc/p/16459371.html[1]. 刘伟, 设计模式. 2011.