factory method Posted on 2021-04-10 Edited on 2021-04-11 In design-pattrns 工厂方法模式是一种创建型设计模式,其在父类中提供一个创建对象的方法,允许子类决定实例化对象的类型。 工厂分为简单工厂模式(SimpleFactory), 工厂方法模式(FactoryMethod), 抽象工厂模式(AbstractFactory)。三种模式可以理解为同一种编程思想的三个版本。 Post author: shou ge Post link: https://shouge.me/2021/04/10/52956a7eae9c/ Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.