黑马程序员技术交流社区
标题:
帮忙看看代码
[打印本页]
作者:
zc332750
时间:
2014-2-8 10:49
标题:
帮忙看看代码
本帖最后由 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");
}
}
为什么编译不通过啊
作者:
kkopopo
时间:
2014-2-8 11:47
switch(i)i的类型 只有btye int shor char 类型 不支持long JDK 5.0以后又增加了string了类型
作者:
郭运川
时间:
2014-2-8 12:27
同意,还有一点就是你发表的代码少个“}”
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");
}
}
}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2