[填空題] 請閱讀下列程序代碼,然后將程序的執(zhí)行結(jié)果補充完整。 程序代碼: public class throwsException static vo
[填空題] 請閱讀下列程序代碼,然后將程序的執(zhí)行結(jié)果補充完整。
程序代碼:
public class throwsException
static void Proc(int sel)
throws ArithmeticException,ArrayIndexOutOfBoundsException
System.out. println("In Situation"+sel);
if(sel==0)
System.out.println("no Exception caught");
return;
else if(sel==1)int iArray[]=new int[4];
iArray[1]=3;
public static void main(String args[])
try
Proc(0);
Proc(1);
catch(ArrayIndexOutOfBoundsException e)System.out.println("Catch"+e);
finallySystem.out.println("in Proc finally");
執(zhí)行結(jié)果:
In Situation 0
no Exception caught
______
in Proc finally
正確答案:In Situationl
參考解析:本題考查考生閱讀Java程序的能力。題目程序看似復(fù)雜,但流程非常簡單。程序的public類是throwsException,類中定義了Proc(int sel)方法。程序入口是main()方法,使用try-catch-finally來捕獲ArithmeticException和ArraylndexOutOfBounds-Exception異常,這兩個異常是關(guān)于算術(shù)異?;驍?shù)組索引越界的異常。執(zhí)行 Proc(0)時,輸出In Situation 0和no Exception caught兩條信息;執(zhí)行Proc(1)時,輸出In Situationl和in Proc finally兩條信息。整個程序并未發(fā)生異常。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。