时间:2021-05-20
平时在开发中避免不了使用大量的if else语句,但过多层的if else对于性能有很大的开销,类似如下代码
public class MainStart { public static void main(String[] args) { String msgid = "MS066"; if(message.equals("MS066")){ System.out.println("MS066"); }else if (message.equals("MS034")){ System.out.println("MS034"); }else if (message.equals("MS064")){ System.out.println("MS064"); }else{ System.out.println("no msgid!"); } }}上边代码只是示例,实际情况可能不止4层
策略模式是一种解耦的方法,它对算法进行封装,使得算法的调用和算法本身分离。使用策略模式客户端代码不需要调整,算法之间可以互相替换,因为不同的算法实现的是同一个接口。将上面的代码优化后变为:
public class MainStart { public static void main(String[] args) { OrderDictController controller=new OrderDictController(); String msgid = "MS066"; MsgInterface msgInterface=MsgContext.getInstance(msgId); msgInterface.manage(msg,controller); }}实现策略模式需要以下几个步骤:
1.定义接口
import java.sql.SQLException;import org.dom4j.DocumentException;import com.huc.controller.OrderDictController;public interface MsgInterface { public void manage(String msg, OrderDictController controller) throws DocumentException, SQLException;}2.实现接口,重写处理逻辑
package com.huc.msg.imp;import java.sql.SQLException;import org.dom4j.DocumentException;import com.huc.controller.OrderDictController;import com.huc.msg.MsgInterface;public class MS003 implements MsgInterface{ @Override public void manage(String msg, OrderDictController controller) throws DocumentException, SQLException { controller.manageMs003(msg); }}package com.huc.msg.imp;import java.sql.SQLException;import org.dom4j.DocumentException;import com.huc.controller.OrderDictController;import com.huc.msg.MsgInterface;public class MS028 implements MsgInterface{ @Override public void manage(String msg, OrderDictController controller) throws DocumentException, SQLException { controller.manageMs028(msg); }}写两个作为例子,可根据情况自行扩展实现类
3.定义策略上下文,根据msgid获取对象实例
package com.huc.msg;import java.util.Map;public class MsgContext { public static MsgInterface getInstance(String msgId){ MsgInterface inter=null; Map<String, String> allClazz = MsgEnum.getAllClazz(); String clazz = allClazz.get(msgId); if (msgId!=null&&msgId.trim().length()>0) { try { try { inter = (MsgInterface) Class.forName(clazz).newInstance();//调用无参构造器创建实例 } catch (InstantiationException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } } catch (ClassNotFoundException e) { e.printStackTrace(); } } return inter; }}在这一步骤中,我们需要一种方式可以根据msgid来反射获取对象的实例,这里使用枚举来维护二者的对应关系。
package com.huc.msg;import java.util.HashMap;import java.util.Map;public enum MsgEnum { MS066("MS066", "com.huc.msg.imp.MS066"), MS034("MS034", "com.huc.msg.imp.MS034"), MS064("MS064", "com.huc.msg.imp.MS064"), MS028("MS028", "com.huc.msg.imp.MS028"), MS003("MS003", "com.huc.msg.imp.MS003"), MS062("MS062", "com.huc.msg.imp.MS062"), MS154("MS154", "com.huc.msg.imp.MS154"), MS153("MS153", "com.huc.msg.imp.MS153"), MS033("MS033", "com.huc.msg.imp.MS033"); private String msgid; private String clazz; public static Map<String, String> getAllClazz() { Map<String, String> map = new HashMap<String, String>(); for (MsgEnum msgEnum : MsgEnum.values()) { map.put(msgEnum.getMsgid(), msgEnum.getClazz()); } return map; } MsgEnum(String msgid, String clazz) { this.msgid = msgid; this.clazz = clazz; } public String getMsgid() { return msgid; } public void setMsgid(String msgid) { this.msgid = msgid; } public String getClazz() { return clazz; } public void setClazz(String clazz) { this.clazz = clazz; }}在上面的代码中,getAllClazz()方法用于获取所有message和对应处理类的映射关系。至此策略模式优化就已经完成了,运行MainStart可以看到运行结果。
以上就是Java如何利用策略模式替代if/else语句的详细内容,更多关于Java 策略模式的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
if...elseif...else语句if语句后面可以跟elseif…else语句,这种语句可以检测到多种可能的情况。使用if,elseif,else语句的时
一个else语句可以使用if语句结合起来。如果在if语句中的条件表达式解析为0或false值,那么else语句包含代码执行。else语句是可选的声明,并if语句
循环使用else语句在python中,for…else表示这样的意思,for中的语句和普通的没有区别,else中的语句会在循环正常执行完(即for不是通过bre
在学习python循环语句的时候,发现else竟然可以和循环语句使用,但是它却与if中else语句的运行完全不同,有时候你真的感觉掉进这个else陷阱里了,完全
和Java、PHP等语言不一样,sh的流程控制不可为空,如:复制代码代码如下:在sh/bash里可不能这么写,如果else分支没有语句执行,就不要写这个else