首页 试题详情
单选题

try-catch-finally语句结构中,由try模块抛出的异常,被( )模块捕获。

Atry

Bcatch

Cfinally

Dthrow

正确答案:A (备注:此答案有误)

相似试题

  • 单选题

    try-catch-finally语句结构中,由try模块抛出的异常,被( )模块捕获。

    答案解析

  • 单选题

    Try catch组件的作用是()。

    答案解析

  • 单选题

    阅读下列程序片段 public void test(){   try{     sayHello();     System.out.println(Hello);   }catch (ArrayIndexOutOfBoundException e) {     System.out.println(ArrayIndexOutOfBoundException);   }catch(Exception e){     System.out.println(Exception);   }finally {     System.out.println(Finally);   } } 如果sayHello( )方法正常运行,则test( )方法的运行结果将是:

    答案解析

  • 问答题

    try-except 与 try-finally 有什么不同?

    答案解析

  • 单选题

    给定以下JAVA代码,这段代码编译运行后输出的结果是( ?)。???public class Test {???????public static int aMethod(int i) throws Exception ???{??? ?try{return i/10;}catch(Exception ex){throw new Exception (exception in a aMothod);}finally{?? ? System.out.print(finally);}}??? ?public static void main(String []?args) ?{try{aMethod(0);??? }catch(Exception ex){System.out.print(exception in main);??? }System.out.print(finished);}}

    答案解析

热门题库