Java 基础之异常处理
异常概述与异常体系结构
在使用计算机语言进行项目开发的过程中,即使程序员把代码写得尽善尽美,在系统的运行过程中仍然会遇到一些问题,因为很多问题不是靠代码能够避免的,比如:客户输入数据的格式,读取文件是否存在,网络是否始终保持
通畅等等
异常:在Java语言中,将程序执行中发生的不正常情况称为“异常”。(开发过程中的语法错误和逻辑错误不是异常)
Java程序在执行过程中所发生的异常事件可分为两类:
Error:Java虚拟机无法解决的严重问题。如:JVM系统内部错误、资源耗尽等严重情况。比如:StackOverflowError和OOM。一般不编写针对性代码进行处理。
Exception: 其它因编程错误或偶然的外在因素导致的一般性问题,可以使用针对性的代码进行处理。例如:
空指针访问
试图读取不存在的文件
网络连接中断
数组角标越界
异常概述与异常体系结构
对于这些错误,一般有两种解决方法:一是遇到错误就终止程序的运行。另一种方法是由程序员在编写程序时,就考虑到错误的
检测、错误消息的提示,以及错误的处理。
捕获错误最理想的是在编译期间,但有的错误只有在运行时才会发生。
比如:除数为0,数组下标越界等
分类:编译时异常和运行时异常
常见运行异常及示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | 一、异常处理体系结构 java.lang.Throwable |------java.lang.Error:一般不编写针对性的代码处理 |------java.lang.Exception:可以进行处理 |-------编译时异常(checked) |-----IOException |-----FileNotFoundException |------ClassNotFoundException |-------运行时异常(unchecked) |-------NullPointerException(空指针异常) |-------ArrayIndexOutOfBoundsException(数组角标越界) |-------ClassCastException(类型转换异常) |-------NumberFormatException |-------InputMismatchException |-------ArithmeticException */ public class ExceptionTest { //NullPointerException(空指针异常) @Test public void test1(){ // int [] arr = null; // System.out.println(arr[3]);//NullPointerException(空指针异常) String str = "abc" ; str = null ; System.out.println(str.charAt( 0 )); //NullPointerException(空指针异常) } //ArrayIndexOutOfBoundsException(数组角标越界) @Test public void test2(){ int [] arr = new int [ 3 ]; System.out.println(arr[ 3 ]); //ArrayIndexOutOfBoundsException(数组角标越界) } //ClassCastException(类型转换异常) @Test public void test3(){ Object obj = new Date(); String str = (String)obj; //ClassCastException(类型转换异常) } //NumberFormatException转换异常 @Test public void test4(){ String str = "123" ; str = "abc" ; int num = Integer.parseInt(str); } //InputMismatchException输入不匹配异常 @Test public void test5(){ Scanner scanner = new Scanner(System.in); int score = scanner.nextInt(); //InputMismatchException输入不匹配异常 System.out.println(score); } //ArithmeticException算术异常 @Test public void test6(){ int a = 10 ; int b = 0 ; System.out.println(a/b); ////ArithmeticException算术异常 } } |
异常处理机制一
在编写程序时,经常要在可能出现错误的地方加上检测的代码,如进行x/y运算时,要检测分母为0,数据为空,输入的不是数据而是字符等。过多的if-else分支会导致程序的代码加长、臃肿,可读性差。因此采用异常处理机制
Java异常处理
Java采用的异常处理机制,是将异常处理的程序代码集中在一起,与正常的程序代码分开,使得程序简洁、优雅,并易于维护。
Java异常处理的方式:
方式一:try-catch-finally
方式二:throws + 异常类型
异常处理:抓抛模型
过程一,抛:程序执行过程中,一旦出现异常,就会在异常代码处生成一个对应异常
对象,并将此对象抛出,一旦抛出对象后,其后代码不在执行
过程二,抓:可以理解异常处理的方式一、try-catch-finally 二、 throws
try-catch-finally 的使用
try{
可能出现问的代码
}catch(异常类型1 变量名1){
处理机制
}catch(异常类型2 变量名2){
处理机制
} catch(异常类型3 变量名){
处理机制
}...
finally{
一定执行的代码
}
说明
1.finally是可选的
2.使用try将可能出现异常的代码包装起来,执行过程中,一旦出现异常
,就会生成一个对异常的对象,根据此对象的类型去catch匹配
3.一旦try中异常对象匹配到某个catch时,就进入catch中进行异常的处理。一旦处理
完成后,就跳出try-catch结构(没有finally的情况)
4. catch 中异常类型没有子父类关系,则谁声明在上,谁声明在下没有关系
如果存在子父类关系。则父类必须声明在最后,否则报错
5.常用的异常方法string e.getMessage()和printStackTrace()打印堆栈信息
6.在try结构定义的变量,再出了try结构不能在被调用
使用try-catch finally 处理编译时异常使得程序在编译时不在报错,运行时
还可能报错;相当于使用try catch finally 将一个编译时可能出现的异常
延迟到了运行时
开发中由于运行时异常比较常见,通常不针对运行时异常编写try--catch-finally了
针对编译时异常一定考虑异常处理
实例1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | public class ErrorTest1 { @Test public void test1(){ String str = "123" ; str = "abc" ; try { int num = Integer.parseInt(str); System.out.println( "1" ); //不执行 } catch (NullPointerException e){ System.out.println( "空指针出现异常" ); System.out.println( "2" ); } catch (NumberFormatException e){ System.out.println( "出现数值转换异常" ); System.out.println(e.getMessage()); //打印报错 e.printStackTrace(); //打印堆栈报错信息 } catch (Exception e){ System.out.println( "异常" ); } System.out.println( "3" ); } } |
测试结果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | java.lang.NumberFormatException: For input string: "abc" at java.lang.NumberFormatException.forInputString(NumberFormatException.java: 65 ) at java.lang.Integer.parseInt(Integer.java: 580 ) at java.lang.Integer.parseInt(Integer.java: 615 ) at com.chenxi.java.ErrorTest1.test1(ErrorTest1.java: 45 ) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java: 62 ) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java: 43 ) at java.lang.reflect.Method.invoke(Method.java: 498 ) at org.junit.runners.model.FrameworkMethod$ 1 .runReflectiveCall(FrameworkMethod.java: 50 ) at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java: 12 ) at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java: 47 ) at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java: 17 ) at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java: 325 ) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java: 78 ) at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java: 57 ) at org.junit.runners.ParentRunner$ 3 .run(ParentRunner.java: 290 ) at org.junit.runners.ParentRunner$ 1 .schedule(ParentRunner.java: 71 ) at org.junit.runners.ParentRunner.runChildren(ParentRunner.java: 288 ) at org.junit.runners.ParentRunner.access$ 000 (ParentRunner.java: 58 ) at org.junit.runners.ParentRunner$ 2 .evaluate(ParentRunner.java: 268 ) at org.junit.runners.ParentRunner.run(ParentRunner.java: 363 ) 出现数值转换异常 at org.junit.runner.JUnitCore.run(JUnitCore.java: 137 ) at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java: 68 ) For input string: "abc" at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java: 47 ) 3 at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java: 242 ) at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java: 70 ) Process finished with exit code 0 |
结构finally使用
try -- catch ---finally
1.finally 是可选的
2.finally 声明的语句是一定会被执行的;即使catch 中又出现异常,
try 中有return语句,catch 中也有return语句等情况
数据库链接、输入输出流、网络编程Socket等资源,JVM 是不会自动回收的,需要
手动进行资源释放,此时的资源释放,就需要声明在finally中
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | public class FinallyTest { @Test //finally释放资源操作 public void test2() { FileInputStream fis = null ; try { File file = new File( "hello.txt" ); fis = new FileInputStream(file); int data= fis.read(); while (data != - 1 ){ System.out.println(( char )data); data = fis.read(); } } catch (FileNotFoundException e){ e.printStackTrace(); } catch (IOException e){ e.printStackTrace(); } finally { try { if (fis != null ) { fis.close(); } } catch (IOException e) { e.printStackTrace(); } } } @Test public void tsetmeth(){ FinallyTest f1 = new FinallyTest(); int i = f1.method(); System.out.println(i); } public int method(){ try { int [] arr = new int [ 10 ]; System.out.println(arr[ 10 ]); return 1 ; } catch (ArrayIndexOutOfBoundsException e){ e.printStackTrace(); return 2 ; } finally { System.out.println( "我一定会执行" ); } } @Test public void text1(){ try { int a = 10 ; int b = 0 ; System.out.println(a/b); } catch (ArithmeticException e){ // e.printStackTrace(); int [] arr = new int [ 10 ]; System.out.println(arr[ 10 ]); } catch (Exception e){ e.printStackTrace(); } finally { System.out.println( "百年孤独!" ); } } } |
开发中如何选择使用try---catch---finally 还是使用throws
*如果父类中被重写的方法没有throws方式处理掉,则子类重写的方法也不能使用
* throws ,意味着如果子类重写的方法有异常,必须使用try-catch-finally方式处理
* 执行的方法A中,先后调用了另外几个方法,这几个方法是递进执行的关系,建议这几个方法使用throw的方式
* 进行处理。而执行的方法a可以考虑使用try-catch-finally 的方式进行处理
*
示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 方法重写的规则之一 子类重写的方法抛出异常类不大于父类被重写的方法抛出的异常类型 */ public class OverrideTest { public static void main(String[] args) { OverrideTest test = new OverrideTest(); test.display( new SubClass()); } public void display(SuperClass s){ try { s.method(); } catch (IOException e){ e.printStackTrace(); } } } class SuperClass{ public void method() throws IOException { } } class SubClass extends SuperClass{ @Override public void method() throws FileNotFoundException { } } |
关于异常对象的产生1.系统自动生成异常对象
2. 手动生成异常,并抛出异常
手动抛出异常示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | public class StudentTest { public static void main(String[] args) { Student s1 = new Student(); s1.regist(- 1001 ); System.out.println(s1); } } class Student{ private int id; public void regist( int id){ if (id > 0 ){ this .id= id; } else { // 手动抛异常 throw new RuntimeException( "非法数字" ); } } } 测试结果 Exception in thread "main" java.lang.RuntimeException: 非法数字 at com.chenxi.java3.Student.regist(StudentTest.java: 18 ) at com.chenxi.java3.StudentTest.main(StudentTest.java: 6 ) |
自定义异常类
自定义异常类
1.继承现有的异常结构:RuntimeException、Exception
2.提供全局常量:serialVersionUID
3.提供重载构造器
示例
定义异常类
1 2 3 4 5 6 7 8 9 10 11 | public class MyException extends Exception { static final long serialVersionUID = -7034897190745766938L; public MyException() { super (); } public MyException(String message) { super (message); } } |
测试异常处理
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | public class StudentTest { public static void main(String[] args) { try { Student s1 = new Student(); s1.regist(- 1001 ); System.out.println(s1); } catch (Exception e){ System.out.println(e.getMessage()); } } } class Student{ private int id; public void regist( int id) throws MyException { if (id > 0 ){ this .id= id; } else { // 手动抛异常 throw new MyException( "不能输入负数" ); } } } |
测试结果
1 | 不能输入负数 |
草都可以从石头缝隙中长出来更可况你呢
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· 葡萄城 AI 搜索升级:DeepSeek 加持,客户体验更智能
· 什么是nginx的强缓存和协商缓存
· 一文读懂知识蒸馏
2020-04-11 MySQL 函数
2019-04-11 docker存储管理