go-pattern-examples/creation/05_abstract_factory/README.md
2020-04-24 18:09:58 +08:00

13 lines
656 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 抽象工厂模式
抽象工厂模式用于生成具有多产品种类生产能力的的工厂,所生成的对象往往是有关联的。
如果抽象工厂退化成生成的对象无关联的或者单一的产品种类则成为工厂函数模式。
参考:[对比](https://blog.csdn.net/wyxhd2008/article/details/5597975)
![对比图片](../../images/abstract-factorys-method.png)
比如本例子中使用RDB和XML存储订单信息抽象工厂分别能生成相关的主订单信息和订单详情信息。
如果业务逻辑中需要替换使用的时候只需要改动工厂函数相关的类就能替换使用不同的存储方式了。