go-pattern-examples/creation/04_factory_method/README.md
2020-04-21 22:53:23 +08:00

157 B

工厂方法模式

工厂方法模式使用子类的方式延迟生成对象到子类中实现。

Go中不存在继承 所以使用匿名组合来实现