e.printStackTrace() ; try{ BufferedReader input=new BufferedReader(new InputStreamReader(System.in)); String inputLine=input.readline(); int i=Integer.parseInt(inputLine).intValue(); } catch(Exception e){ e.printStackTrace() ; }在后面加e.printSta

来源:学生作业帮助网 编辑:作业帮 时间:2024/12/01 17:43:19
e.printStackTrace() ; try{ BufferedReader input=new BufferedReader(new InputStreamReader(System.in)); String inputLine=input.readline(); int i=Integer.parseInt(inputLine).intValue(); } catch(Exception e){ e.printStackTrace() ; }在后面加e.printSta
xoP>BBK|{YjS,$~29P Y2Q?[<%HEM|s> U&=T0x-NS"FI2ySㄶdHS%0#ɻ}I&Qí%'eWD5JpYxJ{$Ř:΅E-sU(\t\7>BDxo `CJkgͬ֙n~%(a_L+ֻPlb70"fݵ4Vm z/D{V ՄNS_ ہ~XP断AO} s tt0V>-8=u/'D iِv #jcd۱):YW'.qr#8!%:8VuFݹSsrTjZkqe>ְܜ,aY hmj i,jCodUh9QUGQ:?wMu'

e.printStackTrace() ; try{ BufferedReader input=new BufferedReader(new InputStreamReader(System.in)); String inputLine=input.readline(); int i=Integer.parseInt(inputLine).intValue(); } catch(Exception e){ e.printStackTrace() ; }在后面加e.printSta
e.printStackTrace() ;
try{
BufferedReader input=new BufferedReader(new InputStreamReader(System.in));
String inputLine=input.readline();
int i=Integer.parseInt(inputLine).intValue();
}
catch(Exception e){
e.printStackTrace() ;
}
在后面加e.printStackTrace() ;是为什么?

e.printStackTrace() ; try{ BufferedReader input=new BufferedReader(new InputStreamReader(System.in)); String inputLine=input.readline(); int i=Integer.parseInt(inputLine).intValue(); } catch(Exception e){ e.printStackTrace() ; }在后面加e.printSta
catch(Exception e){
e.printStackTrace() ;
}
当try语句中出现异常是时,会执行catch中的语句,java运行时系统会自动将catch括号中的Exception e 初始化,也就是实例化Exception类型的对象.e是此对象引用名称.然后e(引用)会自动调用Exception类中指定的方法,也就出现了e.printStackTrace() ;.
printStackTrace()方法的意思是:在命令行打印异常信息在程序中出错的位置及原因.(这是白话解释,比较容易理解)