本文介绍了如果finally块抛出一个异常,会发生什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果finally块抛出异常是什么究竟会发生什么?
特别是如果execption通过中途抛出finally块会发生什么。不要在此块语句的其余部分被调用?
我知道,异常将向上传播完成。
解决方案
That exception propagates out and up, and will (can) be handled at a higher level.
Your finally block will not be completed beyond the point where the exception is thrown.
If the finally block was executing during the handling of an earlier exception then that first exception is lost.
这篇关于如果finally块抛出一个异常,会发生什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!