首页 > 计算机 > 计算机考试 正文

[填空题] 在下列程序的下划线处,填入适当语句使程序能正确执行并输出异常栈信息。 public class Throwable Exception public static voidmain(S

时间:2021-07-20 19:34:00 解答: 197 次

[填空题] 在下列程序的下划线处,填入适当语句使程序能正确执行并输出异常栈信息。

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)

参考解析:

题目中的代码比较简单,就是生成一个异常,然后执行catch当中的语句。其中,前面三条都是输出一些异常事件的基本信息,但是题目中还要求输出异常栈的信息。因此,下划线处填入的语句应该输出异常栈的信息。异常对象的PnntStackTrace()方法就是用来输出异常栈的信息。因此,下划线处应填入的语句是 e.printStackTrace()或e.printStackTrace(System.out)。

  • 相关题库

请充值VIP继续使用(未注册用户支付后会自动注册登录)

×

95元 29元

VIP截止日期:2024-12-31 04:01:25

←请使用支付宝扫码支付

95元 29元

VIP截止日期:2024-12-31 04:01:25

←请使用微信扫码支付