• java switch语句注意事项


    /*
    switch语句的使用注意事项:
        1、多个case后面的数据不可以重复
        2、switch后面的小括号当中只能是下列数据类型:
            基本数据类型:byte 、 short、char、int
            引用数据类型:String字符串、enum枚举
            
        3、switch语句格式可以很灵活:前后顺序可以颠倒,而且break语句还可以省略
        
        匹配哪一个case就从哪一个位置向下执行,知道遇到break或者整体结束
        
    
    */
    public class Demo03SwitchNotice{
        public static void main(String[] args){
            int num = 2;
            switch (num){
                case 1:
                System.out.pritln("你好");
                break;
                case 2:
                System.out.println("我好");
                break;
                case 3:
                System.out.println("大家好");
                break;
                default:
                System.out.println("真的好");
                break;
                
            }
        }
    }
  • 相关阅读:
    基于MFC的Media Player播放器的制作(1---播放器界面的布局)
    Codeforces 1182
    Codeforces 1169
    Codeforces 1167
    Codeforces 1166
    Codeforces 1148
    *Codeforces 1162
    Codeforces 1159
    点分治
    高斯消元*
  • 原文地址:https://www.cnblogs.com/spp666/p/11677792.html
Copyright © 2020-2023  润新知