黑马程序员技术交流社区

标题: 异常问题 [打印本页]

作者: 李道福    时间: 2013-9-9 14:21
标题: 异常问题
本帖最后由 李道福 于 2013-9-9 21:22 编辑
  1. public class ExceptionTest{
  2.         public static void main(String[] args){
  3.         try {
  4.      try {
  5.         System.out.print("A");
  6.         throw new Exception("1");
  7.     } catch (Exception e) {
  8.         System.out.print("B");
  9.         throw new Exception("2");
  10.     } finally {
  11.         System.out.print("C");
  12.         throw new Exception("3");
  13.     }
  14. } catch (Exception e) {
  15.     System.out.print(e.getMessage());
  16. }
  17. }
  18. }
复制代码
为什么这个程序的运行结果是ABC3而不是AB2C3,在这个程序中finally到底是什么时候运行的?

作者: mo﹎雲℡    时间: 2013-9-9 14:32
       throw new Exception("2");
        throw new Exception("3");
你的2个新异常类,是匿名异常类。
catch (Exception e) 接收的是一个异常类,不是多个,所以 catch 执行的是最近新建的匿名异常类。
你可以把你的第12行代码注释掉。在看看结果。
就知道答案了。




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