W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
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é)果。
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é)果。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: