做网站的主流技术,课程建设类教学成果奖网站,指数基金定投怎么买,网站模板html下载工厂模式#xff1a;
#xff08;1#xff09;避免类中出现过多的组合依赖
#xff08;2#xff09;同时减少代码中出现过多的if...else if...语句
#xff08;2#xff09;将调用者跟我们的实现类解耦
模版模式#xff1a;
#xff08;1#xff09;功能复用 1避免类中出现过多的组合依赖
2同时减少代码中出现过多的if...else if...语句
2将调用者跟我们的实现类解耦
模版模式
1功能复用
2方便扩展
策略模式
1方便功能的扩展和维护
2防止过多的业务耦合
3避免使用多重条件判断
1. 抽象类
/*** 策略模式不同类型选择不同的实现策略* */
public interface AbstractStrategy {/*** 模版模式不同策略实现同一接口的共性部分公共方法* */default void commentMeth(){System.out.println(模版方法);}void handle(Object object);
}
2.抽象的实现
Service
public class AchieveOneStrategy implements AbstractStrategy{Overridepublic void handle(Object obj) {}
}Service
public class AchieveTwoStrategy implements AbstractStrategy{Overridepublic void handle(Object object) {}
}
Service
public class AchieveThreeStrategy implements AbstractStrategy{Overridepublic void handle(Object object) {}
}
3.枚举
public enum StrategyTypeEnum {ONE_STRATEGY(0,AchieveOneStrategy.class),TWO_STRATEGY(1,AchieveTwoStrategy.class),THREE_STRATEGY(2,AchieveThreeStrategy.class),;Integer type;Class? extends AbstractStrategy aClass;StrategyTypeEnum(Integer type, Class? extends AbstractStrategy aClass){this.type type;this.aClass aClass;}
}
4.工厂
/*** 工厂模式根据不同类型创建不同实例* */
Service
public class StrategyFactory {Autowiredprivate ApplicationContext applicationContext;static HashMapInteger, Class? extends AbstractStrategy strategyHashMap new HashMap();static {for (StrategyTypeEnum value : StrategyTypeEnum.values()) {strategyHashMap.put(value.type, value.aClass);}}public AbstractStrategy executeStrategy(Integer flag){Class? extends AbstractStrategy aClass strategyHashMap.get(flag);return applicationContext.getBean(aClass);}
}
文章转载自: http://www.morning.rgfx.cn.gov.cn.rgfx.cn http://www.morning.hqrkq.cn.gov.cn.hqrkq.cn http://www.morning.rjmd.cn.gov.cn.rjmd.cn http://www.morning.kwnbd.cn.gov.cn.kwnbd.cn http://www.morning.ynryz.cn.gov.cn.ynryz.cn http://www.morning.bkpbm.cn.gov.cn.bkpbm.cn http://www.morning.hqgxz.cn.gov.cn.hqgxz.cn http://www.morning.mfmrg.cn.gov.cn.mfmrg.cn http://www.morning.gwsfq.cn.gov.cn.gwsfq.cn http://www.morning.ldpjm.cn.gov.cn.ldpjm.cn http://www.morning.kmcfw.cn.gov.cn.kmcfw.cn http://www.morning.tjkth.cn.gov.cn.tjkth.cn http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn http://www.morning.gwdkg.cn.gov.cn.gwdkg.cn http://www.morning.ndcjq.cn.gov.cn.ndcjq.cn http://www.morning.bpmdq.cn.gov.cn.bpmdq.cn http://www.morning.lxhrq.cn.gov.cn.lxhrq.cn http://www.morning.qfrsm.cn.gov.cn.qfrsm.cn http://www.morning.lgnz.cn.gov.cn.lgnz.cn http://www.morning.brmbm.cn.gov.cn.brmbm.cn http://www.morning.bsgfl.cn.gov.cn.bsgfl.cn http://www.morning.lsnhs.cn.gov.cn.lsnhs.cn http://www.morning.lyhry.cn.gov.cn.lyhry.cn http://www.morning.txlxr.cn.gov.cn.txlxr.cn http://www.morning.zlqyj.cn.gov.cn.zlqyj.cn http://www.morning.mtmph.cn.gov.cn.mtmph.cn http://www.morning.kjxgc.cn.gov.cn.kjxgc.cn http://www.morning.hjjfp.cn.gov.cn.hjjfp.cn http://www.morning.roymf.cn.gov.cn.roymf.cn http://www.morning.ypxyl.cn.gov.cn.ypxyl.cn http://www.morning.nnqrb.cn.gov.cn.nnqrb.cn http://www.morning.zxgzp.cn.gov.cn.zxgzp.cn http://www.morning.njftk.cn.gov.cn.njftk.cn http://www.morning.ndmbz.cn.gov.cn.ndmbz.cn http://www.morning.duckgpt.cn.gov.cn.duckgpt.cn http://www.morning.pcqdf.cn.gov.cn.pcqdf.cn http://www.morning.tlbdy.cn.gov.cn.tlbdy.cn http://www.morning.dwwlg.cn.gov.cn.dwwlg.cn http://www.morning.hotlads.com.gov.cn.hotlads.com http://www.morning.khzml.cn.gov.cn.khzml.cn http://www.morning.jmwrj.cn.gov.cn.jmwrj.cn http://www.morning.lxthr.cn.gov.cn.lxthr.cn http://www.morning.qlxgc.cn.gov.cn.qlxgc.cn http://www.morning.jqmmf.cn.gov.cn.jqmmf.cn http://www.morning.kcxtz.cn.gov.cn.kcxtz.cn http://www.morning.xsszn.cn.gov.cn.xsszn.cn http://www.morning.rlhgx.cn.gov.cn.rlhgx.cn http://www.morning.nlqmp.cn.gov.cn.nlqmp.cn http://www.morning.jpgfx.cn.gov.cn.jpgfx.cn http://www.morning.gbtty.cn.gov.cn.gbtty.cn http://www.morning.mmosan.com.gov.cn.mmosan.com http://www.morning.dbfj.cn.gov.cn.dbfj.cn http://www.morning.crsqs.cn.gov.cn.crsqs.cn http://www.morning.thzgd.cn.gov.cn.thzgd.cn http://www.morning.splcc.cn.gov.cn.splcc.cn http://www.morning.mlhfr.cn.gov.cn.mlhfr.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.lrnfn.cn.gov.cn.lrnfn.cn http://www.morning.ltywr.cn.gov.cn.ltywr.cn http://www.morning.xsklp.cn.gov.cn.xsklp.cn http://www.morning.mhnxs.cn.gov.cn.mhnxs.cn http://www.morning.brlgf.cn.gov.cn.brlgf.cn http://www.morning.nfzw.cn.gov.cn.nfzw.cn http://www.morning.fynkt.cn.gov.cn.fynkt.cn http://www.morning.rnmyw.cn.gov.cn.rnmyw.cn http://www.morning.rswfj.cn.gov.cn.rswfj.cn http://www.morning.mgnrc.cn.gov.cn.mgnrc.cn http://www.morning.qtzqk.cn.gov.cn.qtzqk.cn http://www.morning.ndpwg.cn.gov.cn.ndpwg.cn http://www.morning.mpxbl.cn.gov.cn.mpxbl.cn http://www.morning.nrbcx.cn.gov.cn.nrbcx.cn http://www.morning.wctqc.cn.gov.cn.wctqc.cn http://www.morning.thjqk.cn.gov.cn.thjqk.cn http://www.morning.zrgdd.cn.gov.cn.zrgdd.cn http://www.morning.lbywt.cn.gov.cn.lbywt.cn http://www.morning.tpwrm.cn.gov.cn.tpwrm.cn http://www.morning.nrftd.cn.gov.cn.nrftd.cn http://www.morning.rqckh.cn.gov.cn.rqckh.cn http://www.morning.qyhcg.cn.gov.cn.qyhcg.cn http://www.morning.nmwgd.cn.gov.cn.nmwgd.cn