2022年java常用设计模式-工厂模式的实现.pdf
《2022年java常用设计模式-工厂模式的实现.pdf》由会员分享,可在线阅读,更多相关《2022年java常用设计模式-工厂模式的实现.pdf(15页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、工厂模式细分有三种,分别为:简单工厂模式、工厂方法模式和抽象工厂模式。(现单个的讲,最后再讲这三个的区别)这篇文章主要通过一个农场的实例来讲解,这也是 java 与模式书中的例子,只不过我对一些部分进行了简化,一些部分进行了扩充,以帮助理解例子如下:有一个农场公司,专门向市场销售各类水果有如下水果:葡萄( grape)草莓( strawberry )苹果( apple )/*-1、简单工厂模式-*/这个比较简单,写一下源代码源代码中给出了必须的注释代码比书上的要简单一些,排版也好看一些,只是为了让新手更好的理解Fruit.java:/* 水果与其它植物相比有一些专门的属性,以便与农场的* 其它
2、植物区分开这里的水果假设它必须具备的方法:* 生长 grow() 收获 harvest()种植 plant()*/精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 1 页,共 15 页 - - - - - - - - - - public interface Fruitvoid grow();void harvest();void plant();/*下面是Apple类的函数Apple.java:*/* * 苹果是水果类的一种,因此它必须实现水果接口的所有方法即* grow()harvest()plant(
3、)三个函数另外,由于苹果是多年生植物,* 所以多出一个 treeAge 性质,描述苹果的树龄*/public class Apple implements Fruitprivate int treeAge;public void grow() /苹果的生长函数代码 public void harvest() /苹果的收获函数代码 public void plant() /苹果的种植函数代码 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 2 页,共 15 页 - - - - - - - - - - pub
4、lic int getTreeAge() return treeAge; public void setTreeAge(int treeAge) this.treeAge = treeAge; /*下面是Grape类的函数Grape.java:*/* * 葡萄是水果类的一种,因此它必须实现水果接口的所有方法即* grow()harvest()plant()三个函数另外,由于葡萄分为有籽和无籽* 两种,因此多出一个seedless 性质,描述葡萄有籽还是无籽*/public class Grape implements Fruitprivate boolean seedless;public v
5、oid grow() /葡萄的生长函数代码 public void harvest() /葡萄的收获函数代码 public void plant() /葡萄的种植函数代码 public boolean getSeedless() return seedless; 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 3 页,共 15 页 - - - - - - - - - - public void setSeedless(boolean seedless) this.seedless = seedless;
6、/*下面是Strawberry类的函数Strawberry.java:*/* * 草莓是水果类的一种,因此它必须实现水果接口的所有方法即* grow()harvest()plant()三个函数另外,这里假设草莓分为大棚草莓和一般* 草莓(即没有棚的草莓)因此草莓比一般水果多出一个性质coteless ,描述草莓* 是大棚草莓还是没有大棚的草莓*/public class Strawberry implements Fruitprivate boolean coteless;public void grow() /草莓的生长函数代码 public void harvest() /草莓的收获函数代
7、码 public void plant() /草莓的种植函数代码 public boolean getCoteless() return coteless; public void setCoteless(boolean coteless) this. coteless = 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 4 页,共 15 页 - - - - - - - - - - coteless; 农场的园丁也是系统 的一部 分 ,自然 要有一 个合适的类来代表 ,我们用FruitGardener类来
8、表示 FruitGardener类会根据客户端的要求, 创建出不同的水果对象, 比如苹果(apple ),葡萄( grape)或草莓( strawberry )的实例代码如下所示:FruitGardener.java:/* 通过下面的表态工厂方法,可以根据客户的需要,创建出不同的水果对象* 如果提供的参数是 apple 则通过 return new Apple()创建出苹果实例* 如果是提供的参数是grape 则创建葡萄实例,这正是简单工厂方法之精髓*/public class FruitGardenerpublic static Fruit factory(String which) thr
9、ows BadFruitExceptionif (which.equalsIgnoreCase(apple) return new Apple(); else if (which.equalsIgnoreCase(strawberry) return new Strawberry(); else if (which.equalsIgnoreCase(grape) return new Grape(); 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 5 页,共 15 页 - - - - - - - - -
10、 - else throw new BadFruitException(Bad fruit request); 简单工厂方法的优点是当在系统中引入新产品时不必修改客户端,但需要个修改工厂类,将必要的逻辑加入到工厂类中工厂方法模式就克服了以上缺点,下面谈谈工厂方法模式/*-2、工厂方法模式-*/由于水果接口以及grape 类 strawberry类 apple 类的代码都和上面的一样,所以下面相关的源码去掉了注释Fruit.java:public interface Fruitvoid grow();void harvest();void plant();精品资料 - - - 欢迎下载 - -
11、- - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 6 页,共 15 页 - - - - - - - - - - Apple.java:public class Apple implements Fruitprivate int treeAge;public void grow() /苹果的生长函数代码 public void harvest() /苹果的收获函数代码 public void plant() /苹果的种植函数代码 public int getTreeAge() return treeAge; public void setTreeA
12、ge(int treeAge) this.treeAge = treeAge; Grape.java:public class Grape implements Fruitprivate boolean seedless;public void grow() /葡萄的生长函数代码 public void harvest() /葡萄的收获函数代码 public void plant() /葡萄的种植函数代码 public boolean getSeedless() return seedless; public void setSeedless(boolean seedless) this.se
13、edless = 精品资料 - - - 欢迎下载 - - - - - - - - - - - 欢迎下载 名师归纳 - - - - - - - - - -第 7 页,共 15 页 - - - - - - - - - - seedless; Strawberry.java:public class Strawberry implements Fruitprivate boolean coteless;public void grow() /草莓的生长函数代码 public void harvest() /草莓的收获函数代码 public void plant() /草莓的种植函数代码 public
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022 java 常用 设计 模式 工厂 实现
限制150内