[填空題] 請(qǐng)閱讀下列程序代碼,然后將程序的執(zhí)行結(jié)果補(bǔ)充完整。 程序代碼: Public class throwsException static voi
[填空題] 請(qǐng)閱讀下列程序代碼,然后將程序的執(zhí)行結(jié)果補(bǔ)充完整。
程序代碼:
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");
執(zhí)行結(jié)果:
In Situattion 0
no Exceptioncaught
inProcfinally
正確答案:In SituationI
參考解析:本題考查考生閱讀Java程序的能力。題日程序看似復(fù)雜,但流程時(shí)常簡(jiǎn)單。程序的public類是 throwsException,類中定義了Proc(intsel)方法。程序入口是main()方法,使用try-catch-finally來(lái)捕獲ArithmeticException和Array lndexOutOfBounds-Exception異常,這兩個(gè)異常是關(guān)于算術(shù)異?;驍?shù)組索引越界的異常。執(zhí)行Proc(0)時(shí),輸出InSituation0和noExceptioncaught兩條信息;執(zhí)行Proc(1)時(shí),輸出InSituationl和inProcfmally兩條信息。整個(gè)程序并未發(fā)生異常。
詞條內(nèi)容僅供參考,如果您需要解決具體問(wèn)題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。