当前位置: 首页 > article >正文

Java12~14 switch语法

  JDK8以后的语法没学习了,现在时代发展这么快,所以得加紧时间学习了。JDK12只有一个特性就是switch语法,算是比较容易学习的一个版本吧。总体来说就是三部分内容。具体内容可以看JEP-325的内容。

箭头语法

  每个case可以放箭头了。以下是一个例子:

public class SwitchDemo {
    public static void main(String[] args) throws IOException {
        System.out.println("请输入一个正整数:");
        int r = System.in.read();
        switch (r) {
            case '1', '2' -> System.out.println("小于3");
            case '3' -> System.out.println("等于3");
            default -> System.out.println("大于3");
        }
    }
}

switch作为表达式

  现在switch语句块可以作为表达式赋值给变量了。在以前是需要每个case块里写上赋值语句。对于这个新特性,我写了一个示例代码:

public class SwitchDemo2 {
    public static void main(String[] args) throws IOException {
        System.out.println("请输入一个正整数:");
        int r = System.in.read();
        String day = switch (r) {
            case '1' -> "Monday";
            case '2' -> "Tuesday";
            case '3' -> "Wednesday";
            case '4' -> "Thursday";
            case '5' -> "Friday";
            case '6' -> "Saturday";
            case '7' -> "Sunday";
            default -> null;
        };
        System.out.println(day);
    }
}

break/yield返回值

  在case块里,如果返回值需要复杂运算的,可以先写运算语句,再用break关键字来返回。但是这个关键字马上在新版本JDK13中被取消了。JEP-325中有这个例子:

Most switch expressions will have a single expression to the right of the “case L ->” switch label. In the event that a full block is needed, we have extended the break statement to take an argument, which becomes the value of the enclosing switch expression.
int j = switch (day) {
  case MONDAY -> 0;
  case TUESDAY -> 1;
  default -> {
    int k = day.toString().length();
    int result = f(k);
    break result;
  }
};

  但是这个代码只能在JDK12能编译通过,在JDK13中需要把break换成yield关键字。所以这样写才能编译通过:

public class SwitchDemo3 {
    public static void main(String[] args) throws IOException {
        System.out.println("请输入一个正整数:");
        int r = System.in.read();
        String s= "Foo";
        String day = switch (r) {
            case '1' -> "Monday";
            case '2' -> "Tuesday";
            case '3' -> "Wednesday";
            case '4' -> "Thursday";
            case '5' -> "Friday";
            case '6' -> "Saturday";
            case '7' -> "Sunday";
            default -> {
                System.err.println("一个星期只有7天");
                yield "不知道怎么说";
            }
        };
        System.out.println(day);
    }
}

http://www.kler.cn/a/271897.html

相关文章:

  • Git Bash 配置 zsh
  • ansible一键安装nginx二进制版本
  • 正向代理与反向代理的主要区别
  • 算法随笔_18: 划分字母区间
  • 考研机试题:打印数字菱形
  • 防火墙安全策略
  • QT文件的读取与插入
  • 【Linux】进程与可执行程序的关系fork创建子进程写实拷贝的理解
  • 金枪鱼群优化算法TSO优化BiLSTM-ATTENTION实现风力发电功率预测(matlab)
  • 蓝桥杯--平均
  • [漏洞分析]Fortinet FortiNAC CVE-2022-39952简析
  • JavaScript BOM 的概念(浏览器对象模型)
  • 栈和队列(Java实现)
  • [Python初阶]2255.统计是给定字符串前缀的字符串数目
  • 关于前端打包加部署
  • python二级备考(2)-简单应用题
  • 九种背包问题(C++)
  • react-面试题
  • Python网络爬虫内容介绍
  • HTML静态网页成品作业(HTML+CSS)——家乡广州介绍设计制作(5个页面)
  • 简单认识Java,数据类型与变量,运算符,程序逻辑控制
  • MySQL中出现‘max_allowed_packet‘ variable.如何解决
  • rlwrap安装
  • 【Docker】一文趣谈Docker
  • Sora提示词与视频创作的融合(一):创意启发:利用提示词激发创作灵感
  • 操作系统(AndroidIOS)图像绘图的基本原理