问答详情
源自:5-4 Advice应用(上)

为什么我用老师的代码运行,after方法也不在最后执行呢?

输出结果如下:

MoocAspect before.

AspectBiz biz.

MoocAspect after.

MoocAspect afterReturning.


提问者:夜还没黑 2017-02-07 14:02

个回答

  • i瞎闹腾i
    2017-02-07 21:40:21

    after是在方法运行之后,afterReturning是方法运行之后返回了才执行,意思就是afterReturning在after之后,所以这就是为什么如果方法运行抛出异常没有返回的话,afterReturning就不会执行,而after却会运行的原因