A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© zc332750 中级黑马   /  2014-2-8 10:49  /  929 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 zc332750 于 2014-2-8 12:22 编辑

class AB{       public static void main(String [ ] args){
               long i=0;try{i=Integer.parseInt(args[0]) ;
        }catch(Exception e){ }
          switch(i){
         case 0: System.out.println("0");         case 1: System.out.println("1");
         default : System.out.println("default");  
         }
     }为什么编译不通过啊


2 个回复

倒序浏览
switch(i)i的类型 只有btye int shor   char  类型  不支持long   JDK 5.0以后又增加了string了类型
回复 使用道具 举报
同意,还有一点就是你发表的代码少个“}”
class AB
{      
        public static void main(String [ ] args)
                {
               
                         int i=0;
                         try
                         {
                                  i=Integer.parseInt(args[0]) ;
                          }
                         catch(Exception e){ }
                        switch(i)
                         {
                                       case 0: System.out.println("0");         
                                       case 1: System.out.println("1");
                                        default : System.out.println("default");  
                       }
             }
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马