Java 中如何优化递进式判断?
时间:2024-11-10 09:30:57 298浏览 收藏
欢迎各位小伙伴来到golang学习网,相聚于此都是缘哈哈哈!今天我给大家带来《Java 中如何优化递进式判断?》,这篇文章主要讲到等等知识,如果你对文章相关的知识非常感兴趣或者正在自学,都可以关注我,我会持续更新相关文章!当然,有什么建议也欢迎在评论留言提出!一起学习!
java中递进式判断如何优化?
在代码中,使用了嵌套的 if-else 语句来判断四个字符串变量是否为空。当变量数量较多时,这种递进式判断方式会变得冗长且难以维护。
优化方案
方案一:使用 switch-case 语句
这种方法将不同的判别条件映射到特定的整型值,然后使用 switch-case 语句进行判断。
public class judgeoptimize { private static final int code_condition_one = 0000; private static final int code_condition_two = 0001; private static final int code_condition_three = 0011; private static final int code_condition_four = 0111; private static final int code_condition_five = 1111; private static void test(string a, string b, string c, string d) { switch (init(a, b, c, d)) { case code_condition_one: // do something ... break; case code_condition_two: // do something ... break; case code_condition_three: // do something ... break; case code_condition_four: // do something ... break; case code_condition_five: // do something ... break; } } private static int init(string... allparam) { if (allparam == null) { return 1; } string resultnumberstr = ""; for (string s : allparam) { resultnumberstr += stringutils.isnotempty(s) ? 0 : 1; } return integer.valueof(resultnumberstr); } }
方案二:使用自动化的反射
这种方法通过反射来动态调用预定义的处理方法。当判别条件数量较多时,这种方法更灵活和可维护。
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.HashMap; import java.util.List; import java.util.Arrays; public class SolutionTwo { private static Object result; private static class Action { private Class<?> targetInvokeClass; private String targetMethodName; private Class<?>[] parameterTypes; private Object[] params; private boolean isCurrentClass; private boolean isNoParams; public Action() { } public Action(Class<?> targetInvokeClass, String targetMethodName, Class<?>[] parameterTypes, Object[] params, boolean isCurrentClass, boolean isNoParams) { this.targetInvokeClass = targetInvokeClass; this.targetMethodName = targetMethodName; this.parameterTypes = parameterTypes; this.params = params; this.isCurrentClass = isCurrentClass; this.isNoParams = isNoParams; } } private static final HashMap<Object, Action> ACTION_MAP = new HashMap<>(); static class ResultAction { public void helloWorld(String name) { System.out.println(name + ",你好世界"); } } static { // 都不为空 ACTION_MAP.put(0, new Action(ResultAction.class, "helloWorld", new Class[]{String.class}, new String[]{"我是张三"}, false, false)); // abc不为空,d为空 ACTION_MAP.put(1, new Action(ResultAction.class, "helloWorld", new Class[]{String.class}, new String[]{"我是李四"}, false, false)); // ab不为空,cd为空 ACTION_MAP.put(11, new Action(ResultAction.class, "helloWorld", new Class[]{String.class}, new String[]{"我是王五"}, false, false)); // a不为空,bcd为空 ACTION_MAP.put(111, new Action(ResultAction.class, "helloWorld", new Class[]{String.class}, new String[]{"我是赵六"}, false, false)); // abcd都为空 ACTION_MAP.put(1111, new Action(ResultAction.class, "helloWorld", new Class[]{String.class}, new String[]{"我是张三他爹"}, false, false)); } private static void test(String a, String b, String c, String d) { int result = init(a, b, c, d); Action action = ACTION_MAP.get(result); if (action != null) { handler(action); } else { System.out.println("未找到对应映射键"); } } private static void handler(Action action) { try { Method method = null; Class<?> cls = null; if (action.isCurrentClass()) { method = getMethod(SolutionTwo.class, action.getTargetMethodName(), action.getParameterTypes()); cls = SolutionTwo.class; } else { Class<?> targetClass = action.getTargetInvokeClass(); method = getMethod(targetClass, action.getTargetMethodName(), action.getParameterTypes()); cls = action.getTargetInvokeClass(); } result = method.invoke(cls.newInstance(), action.getParams()); } catch (NoSuchMethodException | IllegalAccessException | InvocationTargetException | InstantiationException e) { e.printStackTrace(); } } private static Method getMethod(Class<?> cls, String methodName, Class<?>[] parameterTypes) throws NoSuchMethodException { return cls.getMethod(methodName, parameterTypes); } private static int init(String... allParam) { if (allParam == null) { return 1; } String resultNumberStr = ""; for (String s : allParam) { resultNumberStr += StringUtils.isNotEmpty(s) ? 0 : 1; } return Integer.valueOf(resultNumberStr); } }
今天关于《Java 中如何优化递进式判断?》的内容就介绍到这里了,是不是学起来一目了然!想要了解更多关于的内容请关注golang学习网公众号!
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
227 收藏
-
461 收藏
-
224 收藏
-
489 收藏
-
107 收藏
-
167 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习