switch语句中case的标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了switch语句中case的标签相关的知识,希望对你有一定的参考价值。
- 类型为char、byte、short、int的常量表达式
- 字符串字面量
String input=......; switch (input.toLowerCase()) { case "yes" : ...... break; case "no"; ...... break; ...... }
- 枚举常量
enum Size {SMALL, LARGE}; Size size=......; switch (size){ case SMALL://不需要使用Size.SMALL ...... break; ...... }
以上是关于switch语句中case的标签的主要内容,如果未能解决你的问题,请参考以下文章