捕获是解决掉异常,抛出异常是向上级抛出。
比如说f.creatwNewFile的异常,很有可能是路径不对,并且我们可以解决这个异常。比如在catch里面我们 System.out.println("文件路径不存在,请输入y,自动创建路径。");
异常分为checked 和unchecked exception。后者包括error和runtimexception。
我们滴定仪异常会要求写三个方法。getMessage printStackTrace toString
捕获是解决掉异常,抛出异常是向上级抛出。
比如说f.creatwNewFile的异常,很有可能是路径不对,并且我们可以解决这个异常。比如在catch里面我们 System.out.println("文件路径不存在,请输入y,自动创建路径。");
异常分为checked 和unchecked exception。后者包括error和runtimexception。
我们滴定仪异常会要求写三个方法。getMessage printStackTrace toString
相关课程