7 在下列程序的下劃線處,填入適當(dāng)語句使程序能正確執(zhí)行;
Public class ThrowsException
{
Static void Example (int keg)
___________________________
System.out.println(“----In KegDepatment”+keg+”----”);
If(keg==10)
{
System.out.println(“no Exception caught”);
Return;
}
Else if(keg==20)
{
Int iArray[]=new int[4];
iArray[10]=3;
}
}
Public static void main(String args[])
{
Try
{
Example (10);
Example (20);
}
Catch(ArrayIndexOutOfBoundsException e)
{system.out.println(“catch ”+e);}
Finally
{system.out.println(“in Example finally”);}
}
}
} ]
答案 throws ArthmeticException,ArrayIndexOutOfBoundsException{
8 在下列程序的下劃線處,填入適當(dāng)語句使程序能正確執(zhí)行:
Public class ThrowbleException
{
Public static void main(String arge[])
{
Try
{throw new Throwable (“這里是本人定義的異!);}
Catch(Throwable e)
{
System.out.println(“Caught Throwable”);
System.out.println(“e.getMessage():”+e.getMessage());
System.out.println(“e.toString():”+e.toString());
System.out.println(“e.printStackTrace():”);
______________________________;
}
}
}
答案 e.printStackTrace()
相關(guān)推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |