[填空题] 请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: Public class throwsException{ static voidProc(intsel) throws A
[填空题] 请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: Public class throwsException{ static voidProc(intsel) throws ArtthmeticExcepdon,AITaylndexOut of BoundsException{ System.out println("In SimatiOn"+Sel); if(sel==0){ System.out.println("noExceptioncallght"); return; } elseif(sel==1){ intiArray[]=newint[4]; i Array[1]=3; } } public static void main(Stringargs[]){ tfy{ Proc(0); Proc(1); } catch(ArraylndexOutOfBoundsExceptione){ System.out.println("Catch"+e); } flnally{ Systern.out.println("inProcfinally"); } } } 执行结果: In Situattion 0 no Exceptioncaught inProcfinally
参考答案: