问题详情

class Birds {  public static void main(String [] args) {  try {  throw new Exception();  } catch (Exception e) { try {  throw new Exception();  } catch (Exception e2) { System.out.print("inner "); }  System.out.print("middle "); }  System.out.print("outer ");  }  }  结果为:()  


A、inner

B、inner outer

C、middle outer

D、inner middle outer

时间:2022-01-04 17:18 关键词: Java认证考试综合练习

答案解析

D
相关问题