switch語句的使用
/**
* 測(cè)試switch語句的用法
*/
public class TestSwitch01 {
? ?public static void main(String[] args) {
? ? ? ?int grade = (int)(4*Math.random()+1);
? ? ? ?switch (grade){
? ? ? ? ? ?//switch()括號(hào)內(nèi)的值默認(rèn)int型,char和String字符串也可以使用
? ? ? ? ? ?case 1:
? ? ? ? ? ? ? ?//如果grade為1 執(zhí)行下面語句
? ? ? ? ? ? ? ?System.out.println("大一");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ? ? ?//遇到break結(jié)束switch語句
? ? ? ? ? ?case 2:
? ? ? ? ? ? ? ?System.out.println("大二");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?case 3:
? ? ? ? ? ? ? ?System.out.println("大三");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?default:
? ? ? ? ? ? ? ?System.out.println("大四");
? ? ? ?}
? ? ? ?//和if同理 switch在多值判斷的時(shí)候比if清晰
? ? ? ?if (grade==1){
? ? ? ? ? ?System.out.println("1");
? ? ? ?} else if (grade==2) {
? ? ? ? ? ?System.out.println("2");
? ? ? ?} else if (grade==3) {
? ? ? ? ? ?System.out.println("3");
? ? ? ?}else {
? ? ? ? ? ?System.out.println("4");
? ? ? ?}
? ? ? ?int month = (int)(12*Math.random()+1);
? ? ? ?switch (month){
? ? ? ? ? ?case 1:
? ? ? ? ? ?case 2:
? ? ? ? ? ?case 3:
? ? ? ? ? ? ? ?//1和2不寫break會(huì)沿用3的語句,相當(dāng)于if month<=3
? ? ? ? ? ? ? ?System.out.println("第一季度");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?case 4:
? ? ? ? ? ?case 5:
? ? ? ? ? ?case 6:
? ? ? ? ? ? ? ?System.out.println("第二季度");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?case 7:
? ? ? ? ? ?case 8 :
? ? ? ? ? ?case 9:
? ? ? ? ? ? ? ?System.out.println("第三季度");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?default:
? ? ? ? ? ? ? ?System.out.println("第四季度");
? ? ? ?}
? ? ? ?
? ? ? ?char d1 = 'a';
? ? ? ?switch (d1){
? ? ? ? ? ?case 'a':
? ? ? ? ? ? ? ?System.out.println('a');
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?default:
? ? ? ? ? ? ? ?System.out.println('b');
? ? ? ?}
? ? ? ?
? ? ? ?String d2 = "起飛";
? ? ? ?switch (d2){
? ? ? ? ? ?case "起飛":
? ? ? ? ? ? ? ?System.out.println("起飛");
? ? ? ? ? ? ? ?break;
? ? ? ? ? ?default:
? ? ? ? ? ? ? ?System.out.println("蕪湖");
? ? ? ?}
? ?}
}