多做题,通过考试没问题!

Java认证考试

睦霖题库>其他计算机考试>Java认证考试

static void test() throws Error {  if (true) throw new AssertionError();  System.out.print(”test “);  }  public static void main(String[] args) {  try { test(); }  catch (Exception ex) { System.out.print(”exception “); }  System.out.print(”elld “);  }  What is the result?() 

  • A、 end
  • B、 Compilation fails.
  • C、 exception end
  • D、 exception test end
  • E、 A Throwable is thrown by main.
  • F、 An Exception is thrown by main.
正确答案:E
答案解析:
进入题库查看解析

微信扫一扫手机做题