问答详情
源自:1-7 Java 中的异常链

throw. throws问题

test1(),抛出DrunkException异常 throw new DrunkException

test2(),  新建RuntimeException异常 throw newExc.中间为什么不加new

提问者:邓一格 2017-09-06 22:48

个回答

  • 64946
    2017-09-07 10:00:32

    RuntimeException newExc = new RuntimeException(e);

    前面有一句这个吧