多个工厂方法模式

是对普通工厂方法模式的改进,在普通工厂方法模式中,如果传递的字符串出错,则不能正确创建对象,而多个工厂方法模式是提供多个工厂方法,分别创建对象。关系图:
多个工厂方法模式在简单工程的上面修改
/**
 * @author Liufei
 * @date 2020/4/10 2:06 下午
 */
public class Factory {
    public Sender productMail() {
        return new MailSender();
    }
    public Sender productSms() {
        return new SmsSender();
    }
}
/**
 * @author Liufei
 * @date 2020/4/10 2:08 下午
 */
public class MoreFactoryTest {

    public static void main(String[] args) {
        Factory factory = new Factory();
        Sender sender = factory.productMail();
        sender.send();
    }
}



来自为知笔记(Wiz)

上一篇:Spring Batch学习笔记二


下一篇:『设计模式』创建型 —— 工厂方法