RuntimeException newExc =
new RuntimeException("司机一滴酒,亲人两行泪");
newExc.initCause(e);
throw newExc;
和图上的有什么区别,为什么又把newExc.initCause(e);注释掉了
RuntimeException提供了带cause参数的构造器,和initCause()函数两种方法来设置cause。图中是通过带cause参数的构造器,给RuntimeException异常引入cause;而你写的代码是通过initCause()来设置cause;
图中是在捕获自定义的异常的catch语句块中定义了一个RuntimeException异常,并再次抛出了它。你这里是建立了RuntimeException并抛出了。这是区别。 注释掉它就是不想让它运行啊(这问法滑了个稽)