Java 字符串Swtich

Java数据类型教程 – Java字符串Swtich

switch-expression使用String类型。如果switch-expression为null,则抛出NullPointerException。

case标签必须是字符串文字。我们不能在case标签中使用String变量。

以下是在switch语句中使用String的示例。

public class Main {
  public static void main(String[] args) {
    String status = "off";
    switch (status) {
    case "on":
      System.out.println("Turn on"); 
    case "off":
      System.out.println("Turn off");
      break;
    default:
      System.out.println("Unknown command");
      break;
    }
  }
}

上面的代码生成以下结果。


Switch比较

String类的equals()方法执行区分大小写的字符串比较。

public class Main {
  public static void main(String[] args) {
    operate("on");
    operate("off");
    operate("ON");
    operate("Nothing");
    operate("OFF");
    operate("No");
    operate("On");
    operate("OK");
    operate(null);
    operate("Yes");
  }

  public static void operate(String status) {
    // Check for null
    if (status == null) {
      System.out.println("status  cannot be  null.");
      return;
    }
    status = status.toLowerCase();
    switch (status) {
    case "on":
      System.out.println("Turn on");
      break;
    case "off":
      System.out.println("Turn off");
      break;
    default:
      System.out.println("Unknown command");
      break;
    }
  }
}

上面的代码生成以下结果。

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《Java 字符串Swtich》
文章链接:https://zhuji.vsping.com/292849.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。