Flask接口签名sign原理与实例代码浅析
235
2022-12-06
Java throw和throws使用区别分析
代码实例:
问题:为什么testRunntimeException()方法没有出现编译错误提示,而testCheckedException()方法却出现unhandle exception?
分析:
Excepiton分两类:checked exception、runtime exception;直接继承自Exception就是checked exception,继承自RuntimeException就是runtime的exception。
你可以简单地理解checked excepthttp://ion就是要强制你去处理这个异常(不管你throws多少层,你终归要在某个地方catch它);而runtime exception则没有这个限制,你可以自由选择是否catch。
那些强制异常处理的代码块,必须进行异常处理,否则编译器会提示“Unhandlhttp://ed exception type Exception”错误警告。
这里testRunntimeException()方法是runtime exception异常,testCheckedException()方法是exception异常,属于checked exception异常
所以testCheckedException()方法却出现unhandle exception
怎么解决testCheckedExcepKAUMpnAeotion()方法却出现unhandle exceptionKAUMpnAeo63;
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~