编译JAVA程序成功但运行javac命令时出现错误
1个回答
展开全部
编译JAVA程序成功证明没有语法上的错误,而运行javac命令时出现错误,也说明了是执行的代码抛出了运行时异常。
运行时异常有:NullPointerException, IndexOutOfBoundsException, NoSuchElementException,ArrayIndexOutOfBoundsException,ClassCastException,NumberFormatException,··· ···
例如:
public class E {
public static void main(String[] args){
String s="fl";
int a=Integer.parseInt(s);
System.out.print(a);
}
}
这段代码能通过编译,但运行的时候会报出NumberFormatException异常:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询