Java中常用的5种创建型模式:工厂方法模式、抽象工厂模式、单例模式、建造者模式、原型模式。 1. 工厂方法模式(Factory Method Pattern) 场景:当一个类不知道它所需要创建的对象的具体类时,使用工厂方法模式。 interface Product { void doSometh