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