黑马程序员技术交流社区

标题: 这是为什么呢? [打印本页]

作者: 杨雯雯    时间: 2012-12-20 12:48
标题: 这是为什么呢?
本帖最后由 杨雯雯 于 2012-12-22 10:24 编辑

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"); }
}
}
错在哪里了呀?各位大虾帮忙看看
作者: 高境    时间: 2012-12-20 12:57
你把long型变量转换成int型会损失精度。所以编译不能通过。
作者: 张学永    时间: 2012-12-20 12:59
switch()语句中的条件表达式,不允许是long类型的,你的 i 编译不能通过。
在switch语句中允许的类型
为byte,short,char,int。这是1.6版本的情况,现在的不知道有改进没。  
作者: 黄嵘才    时间: 2012-12-20 13:03

switch的值不能是long类型。
eclipse的提示的错误信息:“Cannot switch on a value of type long. Only convertible int values, strings or enum constants are permitted
作者: 刘学宾    时间: 2012-12-20 13:14
运行此类时,需传递一个数值型的字符串,当执行到i=Integer.parseInt(args[0]);
语句时,右面的表达式把这个字符串转为int型数值,而左边的i是lomg型,发生
NumberFormatException异常,但会被catch块处理。这时的i仍为0,long型。
问题在于:执行到switch语句时,不能接收long类型的i作为参数,否则编译错误。
作者: 杨雯雯    时间: 2012-12-20 13:15
张学永 发表于 2012-12-20 12:59
switch()语句中的条件表达式,不允许是long类型的,你的 i 编译不能通过。
在switch语句中允许的类型
为byt ...

嗯,知道了
作者: 孙辉辉    时间: 2012-12-20 13:46
1,直接定义in型的,
2,将long型进行强制转化
作者: 郭金龙    时间: 2012-12-20 14:34
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