当前位置: 技术问答>java相关
又来
来源: 互联网 发布时间:2014-12-26
本文导语: 大家帮我看看下面这个类: //检查是否为整数 public Boolean isInt(String str) { str=str.trim(); try{ //定义一个INTEGER新类,并赋予初值0 Integer int_num=new Integer(0); //定义一个整形变量 int int_out=int_num.parseInt(str); } ////catch说明...
大家帮我看看下面这个类:
//检查是否为整数
public Boolean isInt(String str)
{
str=str.trim();
try{
//定义一个INTEGER新类,并赋予初值0
Integer int_num=new Integer(0);
//定义一个整形变量
int int_out=int_num.parseInt(str);
}
////catch说明它要捕捉的异常是NumberFormatException
catch(NumberFormatException e){
//如果捕捉到异常NumberFormatException,就会执行下面的语句
return false;
}
return true;
}
是否哪儿错了?因为出错信息为:
work%3A8080%2Fmyweb_0005ctest_00031_0002ejsptest1_jsp_1.java:370: 'catch' with
out 'try'.
} catch (Throwable t) {
^
work%3A8080%2Fmyweb_0005ctest_00031_0002ejsptest1_jsp_1.java:379: 'try' withou
t 'catch' or 'finally'.
}
请大家帮忙!!!感谢!感谢!
//检查是否为整数
public Boolean isInt(String str)
{
str=str.trim();
try{
//定义一个INTEGER新类,并赋予初值0
Integer int_num=new Integer(0);
//定义一个整形变量
int int_out=int_num.parseInt(str);
}
////catch说明它要捕捉的异常是NumberFormatException
catch(NumberFormatException e){
//如果捕捉到异常NumberFormatException,就会执行下面的语句
return false;
}
return true;
}
是否哪儿错了?因为出错信息为:
work%3A8080%2Fmyweb_0005ctest_00031_0002ejsptest1_jsp_1.java:370: 'catch' with
out 'try'.
} catch (Throwable t) {
^
work%3A8080%2Fmyweb_0005ctest_00031_0002ejsptest1_jsp_1.java:379: 'try' withou
t 'catch' or 'finally'.
}
请大家帮忙!!!感谢!感谢!
|
程序中没有这行代码,} catch (Throwable t) {
是不是不是这里啊
是不是不是这里啊
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。