标签:alt inf not cep mamicode main 测试 fileinput new
测试1:小异常在上,大异常在下
public static void main(String[] args) { try { FileInputStream inputStream = new FileInputStream(""); } catch (FileNotFoundException e) { System.out.println("进入FileNotFoundException"); }catch (Exception e){ System.out.println("进入Exception"); } }
运行结果:打印【进入FileNotFoundException】
测试2:大异常在上,小异常在下
总结:
在写异常处理的时候,一定要把异常范围小的放在前面,范围大的放在后面,Exception这个异常的根类一定要放在最后一个catch里面,如果放在前面或者中间,任何异常都会和Exception匹配的,就会报已捕获到...异常的错误。
标签:alt inf not cep mamicode main 测试 fileinput new
原文地址:https://www.cnblogs.com/fangyanr/p/12187353.html