[填空題] 在下列程序的下劃線處,填入適當(dāng)語句使程序能正確執(zhí)行并輸出異常棧信息。 public class Throwable Exception publ
2021-07-20
[填空題] 在下列程序的下劃線處,填入適當(dāng)語句使程序能正確執(zhí)行并輸出異常棧信息。
public class Throwable Exception
public static voidmain(Stringargs[i]
try
thrownewThrowable("異常");
catch(Throwablee)
System.out.println("CaughtThrowable");
System.out.println("e.getMessage():"+e.getMessage());
System.out.println("e.toString():"+e.toString());
System.out.println("e.printStackTrace():");
;
正確答案:e.printStackTrace0或e.primStackTrace(System.out)
參考解析:題目中的代碼比較簡單,就是生成一個異常,然后執(zhí)行catch當(dāng)中的語句。其中,前面三條都是輸出一些異常事件的基本信息,但是題目中還要求輸出異常棧的信息。因此,下劃線處填入的語句應(yīng)該輸出異常棧的信息。異常對象的PnntStackTrace()方法就是用來輸出異常棧的信息。因此,下劃線處應(yīng)填入的語句是 e.printStackTrace()或e.printStackTrace(System.out)。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。