易学设计模式看书笔记 - 简单工厂模式
Posted blfbuaa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易学设计模式看书笔记 - 简单工厂模式相关的知识,希望对你有一定的参考价值。
本文摘自易学设计模式一书
一、简单工厂模式
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对于某些产品的创建方式会有不同的要求,这种话。
就要不断的改动工厂类。正价对应的推断逻辑,不利于后期的维护。
以上是关于易学设计模式看书笔记 - 简单工厂模式的主要内容,如果未能解决你的问题,请参考以下文章