实际生活中,遇到的情况不可能是非常完美的,比如:你写的某个模块,用户输入不一定符合你的要求、你的程序要打卡某个文件,这个文件可能不存在或者文件格式不对,你要读数据库的数据,数据可能是空的等。我们的程序再跑着,内存或硬盘可能满了。等等。
软件程序在运行过程中,非常可能遇到刚刚提到的这些异常问题,我们叫异常,英文是:Exception,意思是例外。这些,例外情况,或者叫异常,怎么让我们写的程序做出合理的处理。而不至于程序崩溃。
异常指程序运行中出现的不期而至的各种状况,如:文件找不到、网络连接失败、非法参数等。
异常发生在程序运行期间,它影响了正常的程序执行流程。
要理解Java异常处理是如何工作的,你需要掌握以下三种类型的异常:
在Exxception分支中有一个重要的子类RuntimeException(运行时异常)
这些异常一般是由程序逻辑错误引起的,程序应该从逻辑角度尽可能避免这类异常的发生;
Error和Exception的区别:Error通常是灾难性的致命的错误,是程序无法控制和处理的,当出现这些异常时,Java虚拟机(JVM)一般会选择终止线程;Exception通常情况下是可以被程序处理的,并且在程序中应该尽可能的去处理这些异常。
抛出异常
捕获异常
异常处理五个关键字
public class Test { public static void main(String[] args) { int a = 1; int b = 0; try{//监控区域 System.out.println(a/b); }catch (ArithmeticException e){//catch(想要捕获异常的类型) 捕获异常 捕获多个异常需要从小到大 System.out.println("程序出现异常,b不能为0"); }finally{//处理善后工作 System.out.println("finally"); } //finally 可以不用 } }
public class Test2 { public static void main(String[] args) { try { new Test2().test(1, 0); } catch (ArithmeticException e) { e.printStackTrace(); } finally { } } //假设这方法中,处理不了这个异常。方法上抛出异常 public void test(int a, int b) throws ArithmeticException{ if (b == 0){ throw new ArithmeticException();//抛出异常 } } } /* int a = 1; int b = 0; try { if (b==0){//主动抛出异常 throw new ArithmeticException(); } System.out.println(a/b); } catch (Exception e) { e.printStackTrace();//打印错误的栈信息 } finally { } */
使用Java内置的异常类可以描述在编程时出现的大部分异常情况。除此之外,用户还可以自定义异常。用户自定义异常类,只需继承Exception类即可。
在程序中使用自定义异常类,大体可分为以下几个步骤:
//自定义异常类 public class MyException extends Exception { //传递数字大于10; private int detail; public MyException(int a) { this.detail = a; } //toString 异常的打印信息 @Override public String toString() { return "MyException{" + "detail=" + detail + '}'; } }
public class Test { //可能存在异常的方法 static void test(int a) throws MyException { System.out.println("传递的参数为"); if (a>10){ throw new MyException(a); } System.out.println("ok"); } public static void main(String[] args) { try { test(11); } catch (MyException e) { System.out.println("MyException ->" + e); } } }