Java 字符串Swtich

2018-01-23 17:39 更新

Java數(shù)據(jù)類型教程 - Java字符串Swtich


switch-expression使用String類型。如果switch-expression為null,則拋出NullPointerException。

case標(biāo)簽必須是字符串文字。我們不能在case標(biāo)簽中使用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;
    }
  }
}

上面的代碼生成以下結(jié)果。


Switch比較

String類的equals()方法執(zhí)行區(qū)分大小寫的字符串比較。

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;
    }
  }
}

上面的代碼生成以下結(jié)果。



以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號