1请阅读下列程序代码 然后将程序的执行结果补充完整。 public class throwsExce

大学专科 已帮助: 时间:2023-07-25 13:21:49

1请阅读下列程序代码,然后将程序的执行结果补充完整。 public class throwsExcepfion{ static void Proc(int se1) throws ArithmeticException,ArraylndexOutOfBoundsException { System.out.println("in Situation"+se1); if(se1==0){ System.out.println("no Exception caught"); return; }else if(se1==1){ int iArray[]=new int[4]; iArray [1]=3; } } public static void main(String args[])[ try{ Proc(0); Proc(1); } catch(ArraylndexOutOfBoundsException e) { System.out.println("Catch"+e); }finally{ System.out.println("in Proc finally"); } } } 执行结果: In Situation() no ExcepbOn cauSht 【 】 in Proc findly
请帮忙给出正确答案和分析,谢谢!

难度:⭐⭐⭐

题库:大学专科,电子信息,计算机类

标签:正确答案,请帮忙,结果

相似问题