首页 > 代码库 > 易学设计模式看书笔记(2) - 简单工厂模式
易学设计模式看书笔记(2) - 简单工厂模式
本文摘自易学设计模式一书
一、简单工厂模式
1.动物管理系统的样例
public interface Animal{ public void eat(); } public class Tiger implements Animal { public void eat(){ sysout.out.println("老虎会吃"); }; public void run(){ sysout.out.println("老虎会跑"); }; } public class Dolphin implements Animal { public void eat(){ sysout.out.println("海豚会吃"); }; public void swim(){ sysout.out.println("海豚会游泳"); }; } public class SampleFactory { public static Animal createAnimal(String animalName){ if("Tiger".equals(animalName))){ return new Triger(); }else if("Dolphin".equals(animalName)){ return new Dolphin(); } } } public class Client { public static void main(String[] args) { Animal an = SampleFactory.createAnimal("Tiger"); an.eat(); an = SampleFactory.createAnimal("Dolphin"); an.eat(); } }
2.简单工厂模式简单介绍
简单工厂模式又叫做静态工厂模式,它定义一个详细的工厂类来
负责创建一些类的实例,而这些被创建的类应该有一个共同的父类,
这样就能够面向抽象而不是面向详细编程。
简单工厂模式又三个部分组成:工厂类、抽象类和实现抽象类的详细类。
简单工厂模式的原理图:
3.简单工厂模式的优缺点
长处:
在简单工厂模式中,client不再负责对象的创建,而是把这个责任丢给了
工厂类。client呢仅仅负责对象的调用。从而明白了各给类的职责。
缺点:
因为简单工厂模式使用静态方法来创建对象,导致静态方法不能被继承。
还有一方面,这个工长类负责全部类的创建,这会导致详细的产品的
不但增多,可能client对于某些产品的创建方式会有不同的要求,这种话。
就要不断的改动工厂类。正价对应的推断逻辑,不利于后期的维护。
易学设计模式看书笔记(2) - 简单工厂模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。