Java switch多值匹配操作详解
人气:0这篇文章主要介绍了Java switch多值匹配操作详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
我们都知道 switch 用来走流程分支,大多情况下用来匹配单个值,如下面的例子所示:
/** * @author 栈长 */ private static void test(int value) { switch (value) { case 1: System.out.println("1"); break; case 2: System.out.println("1"); break; case 3: System.out.println("1"); break; case 4: System.out.println("1"); break; case 5: System.out.println("1"); break; case 6: System.out.println("0"); break; case 7: System.out.println("0"); break; default: System.out.println("-1"); } }
相关阅读:switch case数据类型。
大概的意思就是,周一到周五输出:1,周六到周日输出:0,默认输出-1。
这样写,很多重复的逻辑,冗余了。
也许这个例子不是很合适,用 if/ else 更恰当,但这只是个例子,实际开发中肯定会有某几个 case 匹配同一段逻辑的情况。
那么,如何让多个 case 匹配同一段逻辑呢?
如下面例子所示:
/** * @author 栈长 */ private static void test(int value) { switch (value) { case 1: case 2: case 3: case 4: case 5: System.out.println("1"); break; case 6: case 7: System.out.println("0"); break; default: System.out.println("-1"); } }
把相同逻辑的 case 放一起,最后一个 case 写逻辑就行了。
格式化后就是这样了:
/** * @author 栈长 */ private static void test(int value) { switch (value) { case 1: case 2: case 3: case 4: case 5: System.out.println("1"); break; case 6: case 7: System.out.println("0"); break; default: System.out.println("-1"); } }
是不是很骚?
其实这不是最合适的最好的写法,在 Java 12 中还可以更骚。
您可能感兴趣的文章:
加载全部内容