实际工作中,遇到的情况不可能是非常完美的。比如:你写的某个模块,用户输入不一定符合 你的要求、你的程序要打开某个文件,这个文件可能不存在或者文件格式不对,你要读取数据 库的数据,数据可能是空的等。我们的程序再跑着,内存或硬盘可能满了。等等
public class Demo01 { public static void main(String[] args) { new Demo01().a(); } public void a(){ b(); } public void b(){ a(); } }
public static void main(String[] args) { System.out.println(11/0); }
软件程序在运行过程中,非常可能遇到刚刚提到的这些异常问题,我们叫异常,英文是: Exception,意思是例外。这些,例外情况,或者叫异常,怎么让我们写的程序做出合理的处 理。而不至于程序崩溃。
异常指程序运行中出现的不期而至的各种状况,如:文件找不到、网络连接失败、非法参数等。
异常发生在程序运行期间,它影响了正常的程序执行流程
要理解Java异常处理是如何工作的,你需要掌握以下三种类型的异常:
抛出异常
捕获异常
异常处理五个关键字
try、catch、finally、throw、throws
举例
int a = 1; int b = 0; //假设要捕获多个异常,从小到大 try{//try监控区域 // System.out.println(a/b); new Test().a(); }catch(ArithmeticException e){//catch(想要捕获的异常类型)捕获异常 System.out.println("程序出现异常,变量b不能为0"); }finally{//处理善后工作 System.out.println("finally"); } //finally 可以不要,假设IO,资源关闭需要使用! } public void a(){ b(); } public void b(){ a(); }
int a = 1; int b = 0; //Ctrl + Alt + T try { System.out.println(a/b); } catch (Exception e) { // System.exit(0);//程序结束 e.printStackTrace();//打印错误的栈信息 } finally { }
public static void main(String[] args) { new Test().test(1,0); } //假设这个方法中,处理不了这个异常,在方法上抛出异常 public void test( int a,int b){ if(b==0){ // throw throws throw new ArithmeticException();//主动抛出异常,一般在方法中使用 } System.out.println(a/b); }
try { new Test().test(1,0); } catch (ArithmeticException e) { e.printStackTrace(); } } //假设这个方法中,处理不了这个异常,在方法上抛出异常 public void test( int a,int b) throws ArithmeticException { if(b==0){ // throw throws throw new ArithmeticException();//主动抛出异常,一般在方法中使用 } System.out.println(a/b); }
使用Java内置的异常类可以描述在编程时出现的大部分异常情况。除此之外,用户还可以自定 义异常。用户自定义异常类,只需继承Exception类即可。
在程序中使用自定义异常类,大体可分为以下几个步骤:
举例
//自定义的异常类 public class MyException extends Exception{ //传递数字>10,抛出异常 private int detail; public MyException( int detail) { this.detail = detail; } //toString:异常的打印信息 @Override public String toString() { return "MyException{" + "detail=" + detail + '}'; } }
//可能会存在异常的方法 static void test (int a) throws MyException{ System.out.println("传递的参数为:" + a); 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("My--------》" + e); } }