Java教程

控制流程系列教材 (二)- java的switch语句

本文主要是介绍控制流程系列教材 (二)- java的switch语句,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

控制流程系列教材 (二)- java的switch语句
更多内容,点击了解: https://how2j.cn/k/control-flow/control-flow-switch/272.html

步骤1:switch
示例 1 : switch

switch可以使用byte,short,int,char,String,enum

注: 每个表达式结束,都应该有一个break;
注: String在Java1.7之前是不支持的, Java从1.7开始支持switch用String的,编译后是把String转化为hash值,其实还是整数
注: enum是枚举类型,在枚举章节有详细讲解

public class HelloWorld {public static void main(String[] args) { //如果使用if elseint day = 5;if (day==1)System.out.println("星期一");  else if (day==2)System.out.println("星期二");else if (day==3)System.out.println("星期三");else if (day==4)System.out.println("星期四");else if (day==5)System.out.println("星期五");else if (day==6)System.out.println("星期六");else if (day==7)System.out.println("星期天");elseSystem.out.println("这个是什么鬼?"); //如果使用switchswitch(day){case 1:System.out.println("星期一");break;case 2:System.out.println("星期二");break;case 3:System.out.println("星期三");break;case 4:System.out.println("星期四");break;case 5:System.out.println("星期五");break;case 6:System.out.println("星期六");break;case 7:System.out.println("星期天");break;default:System.out.println("这个是什么鬼?");} }}

更多内容,点击了解: https://how2j.cn/k/control-flow/control-flow-switch/272.html

这篇关于控制流程系列教材 (二)- java的switch语句的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!