黑马程序员技术交流社区

标题: 请教 [打印本页]

作者: 秋天-10    时间: 2015-4-28 22:17
标题: 请教
  1. 写出程序结果
  2. class Demo
  3. {       
  4.         public static void func()//throws Exception
  5.         {
  6.                 try
  7.                 {
  8.                         throw  new Exception();
  9.                 }
  10.                 finally
  11.                 {
  12.                         System.out.println("B");
  13.                 }
  14.         }
  15.         public static void main(String[] args)
  16.         {
  17.                 try
  18.                 {
  19.                         func();
  20.                         System.out.println("A");
  21.                 }
  22.                 catch(Exception e)
  23.                 {
  24.                         System.out.println("C");
  25.                 }
  26.                 System.out.println("D");
  27.         }
  28. }
复制代码

作者: 许庭洲    时间: 2015-4-29 10:24
如果func放上声明了该异类, 上面程序输出的结果是:?B C D
作者: hhqnmlgb    时间: 2015-4-29 10:37
B   C   D   
作者: 木头人之死    时间: 2015-4-29 12:29
楼上正解




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2