A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

类Demo1:

  1. class  Demo1
  2. {
  3.     public static void func()
  4.     {
  5.         try
  6.         {
  7.             throw new Exception();
  8.             System.out.println("A");//(**)
  9.         }
  10.         catch (Exception e)
  11.         {
  12.             System.out.println("B");
  13.         }
  14.     }
  15.     public static void main(String[] args)
  16.     {
  17.         try
  18.         {
  19.             func();
  20.         }
  21.         catch (Exception e)
  22.         {
  23.             System.out.println("C");
  24.         }
  25.         System.out.println("D");
  26.     }
  27. }
复制代码

类Demo2:

  1. class Demo2
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         try
  6.         {
  7.             showExec();
  8.             System.out.println("A");
  9.         }
  10.         catch (Exception e)
  11.         {
  12.             System.out.println("B");
  13.         }
  14.         finally
  15.         {
  16.             System.out.println("C");
  17.         }
  18.         System.out.println("D");
  19.     }
  20.     public static void showExec() throws Exception
  21.     {
  22.         throw new Exception();
  23.     }
  24. }
复制代码

问这两个类是否能编译通过,为什么?
解析:
游客,如果您要查看本帖隐藏内容请回复

1 个回复

倒序浏览
本帖最后由 fmi110 于 2015-7-28 18:38 编辑

复习了 原来代码块中包含无法执行到的语句 JVM也会报错
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马