首页 试题详情
单选题

阅读下列程序片段 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( )方法的运行结果将是:

AHello

BArrayIndexOutOfBondsException

CException   Finally

DHello  Finally

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

相似试题

  • 单选题

    阅读下列程序片段 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( )方法的运行结果将是:

    答案解析

  • 多选题

    【单选题】有以下程序片段,下列选项不能插入到行1)的是( ? ? ?)1)2) ?public ?class ?Interesting{3) ? ? //do sth4) ?}

    答案解析

  • 单选题

    阅读下列程序程序运行结果是()。

    答案解析

热门题库