关于java异常

ops/2024/11/20 18:25:43/

异常

了解异常

我们之前代码中也接触过某些异常,如数组下标越界

java">int[] arr = {1, 2, 3};System.out.println(arr[100]);// 执行结果
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 100

空指针异常

java">public class Test {public int num = 10;public static void main(String[] args) {Test t = null;System.out.println(t.num);}}// 执行结果
Exception in thread "main" java.lang.NullPointerException

异常指的就是程序在 运行时 出现错误时通知调用者的一种机制。

(1)有些错误如 System.out.println 拼写错了, 写成了 system.out.println. 此时编译过程中就会出错, 这是 “编译期” 出错。
(2)而运行时指的是程序已经编译通过得到 class 文件了, 再由 JVM 执行过程中出现的错误。

防御性异常

在程序出现问题的时候及时通知程序猿. 我们有两种主要的方式。
LBYL在操作之前就做充分的检查。
EAFP也就是先操作, 遇到问题再处理。

异常的优点

例如, 我们用伪代码演示一下开始一局王者荣耀的过程。
下面我们来对比一下。

(1)LBYL风格(不使用异常

java">boolean ret = false;ret = 登陆游戏();if (!ret) {
处理登陆游戏错误;return;}ret = 开始匹配();if (!ret) {
处理匹配错误;return;}ret = 游戏确认();if (!ret) {
处理游戏确认错误;return;}......

(2)EAFP 风格的代码(使用异常)

java"> try {
登陆游戏();
开始匹配();
游戏确认();
选择英雄();
载入游戏画面();...} catch (登陆游戏异常) {
处理登陆游戏异常;} catch (开始匹配异常) {
处理开始匹配异常;} catch (游戏确认异常) {
处理游戏确认异常;} catch (选择英雄异常) {
处理选择英雄异常;} catch (载入游戏画面异常) {
处理载入游戏画面异常;}

异常语法

java">try{    
有可能出现异常的语句 ; 
}[catch (异常类型 异常对象) {} ... ][finally {
异常的出口
}]

try 代码块中放的是可能出现异常的代码.
catch 代码块中放的是出现异常后的处理行为.
finally 代码块中的代码用于处理善后工作, 会在最后执行.
其中 catch 和 finally 都可以根据情况选择加或者不加

不处理异常

java">int[] arr = {1, 2, 3};System.out.println("before");System.out.println(arr[100]);System.out.println("after");// 执行结果
beforeException in thread "main" java.lang.ArrayIndexOutOfBoundsException: 100

我们发现,一旦出现异常,程序终止.

catch处理的异常

java">int[] arr = {1, 2, 3};try {System.out.println("before");arr = null;System.out.println(arr[100]);System.out.println("after");} catch (ArrayIndexOutOfBoundsException e) {e.printStackTrace();}System.out.println("after try catch");// 执行结果
beforeException in thread "main" java.lang.NullPointerExceptionat demo02.Test.main(Test.java:11)

catch 语句不能捕获到刚才的空指针异常. 因为异常类型不匹配。记住catch可以有多个,但是异常同一时间只能执行一个.

关于finally

java">int[] arr = {1, 2, 3};try {System.out.println("before");arr = null;System.out.println(arr[100]);System.out.println("after");} catch (Exception e) {e.printStackTrace();} finally {System.out.println("finally code");}// 执行结果
beforejava.lang.NullPointerExceptionat demo02.Test.main(Test.java:12)finally code

无论是否出现异常,finally 一定会执行.

throw_148">抛出异常throw

java"> public static void main(String[] args) { System.out.println(divide(10, 0)); 
} 
public static int divide(int x, int y) { if (y == 0) { throw new ArithmeticException("抛出除 0 异常"); } return x / y; 
} 
// 执行结果 
Exception in thread "main" java.lang.ArithmeticException: 抛出除 0 异常 
at demo02.Test.divide(Test.java:14) 
at demo02.Test.main(Test.java:9) 

throws_165">throws

我们在处理异常的时候, 通常希望知道这段代码中究竟会出现哪些可能的异常.
我们可以使用 throws 关键字, 把可能抛出的异常显式的标注在方法定义的位置

java"> public static int divide(int x, int y) throws ArithmeticException { if (y == 0) { throw new ArithmeticException("抛出除 0 异常"); } return x / y; 
}

登陆账户习题

java">public class Main {private static String userName = "admin";private static String password = "123456";public static void main(String[] args) {try {login("admin", "123456");} catch (UserError userError) {userError.printStackTrace();} catch (PasswordError passwordError) {passwordError.printStackTrace();}}public static void login(String userName, String password) throws UserError,PasswordError {if (!Main.userName.equals(userName)) {throw new UserError("用户名错误");}if (!Main.password.equals(password)) {throw new PasswordError("密码错误");}System.out.println("登陆成功");}
}
class UserError extends Exception {public UserError(String message) {super(message);}
}
class PasswordError extends Exception {public PasswordError(String message) {super(message);}
}

http://www.ppmy.cn/ops/17184.html

相关文章

后端面试真题--Java篇

Java基础篇 Java基础JVM框架1、Spring2、MyBaits3、MySQL4、Redis5、Tomcat6、Kafka Java基础 1、String类能否被继承,为什么? 2、Java中的几种基本数据类型,各占多少字节 3、String、StringBuffer、StringBuilder区别 4、ArrayList和Linked…

微信小程序 讯飞录音 点击按钮录音内容转文字

<page-meta page-style"{{ showPolish ? overflow: hidden; : }}" /> <view class"wrap"> <view class"header-tab" style"justify-content: {{typeList.length > 2 ? start : center}}"><view class&quo…

面试 Python 基础八股文十问十答第五期

面试 Python 基础八股文十问十答第五期 作者&#xff1a;程序员小白条&#xff0c;个人博客 相信看了本文后&#xff0c;对你的面试是有一定帮助的&#xff01;关注专栏后就能收到持续更新&#xff01; ⭐点赞⭐收藏⭐不迷路&#xff01;⭐ 1&#xff09;怎样将字符串转换为小…

TBS模块

TBS模块 一、概述二、工作模式固定分时开启模式实时触发模式注入模式 一、概述 芯片可以对环境温度&#xff08;TPS&#xff09;、电源电压&#xff08;VCC&#xff09;、电池电压&#xff08;VBAT&#xff09;以及对10路外部ADC&#xff08;ADCIN0~9&#xff09;进行定量的测…

0054__【Linux】 sed命令详解

【Linux】 sed命令详解_linux sed-CSDN博客

【八股】Spring Boot

SpringBoot是如何实现自动装配的&#xff1f; 首先&#xff0c;SpringBoot的核心注解SpringBootApplication里面包含了三个注解&#xff0c;SpringBootConfigurationEnableAutoConfigurationComponentScan&#xff0c;其中EnableAutoConfiguration是实现自动装配的注解&#x…

APISix如何配置gzip压缩、cache、跨域

网上查到的apisix的配置很多都很古老&#xff0c;要改配置文件。其实现在apisix都是使用插件方式实现各种配置&#xff0c;很方便。这里简单介绍下三个常用插件、gzip压缩、cache缓存和跨域插件。这里均使用apisix的Dashboard看板进行配置。 gzip压缩 1. 打开apisix看板&#…

408数据结构,怎么练习算法大题?

其实考研的数据结构算法题是有得分技巧的 得分要点 会写结构定义&#xff08;没有就自己写上&#xff09;写清楚解题的算法思想描述清楚算法实现最后写出时间和空间复杂度 以上这四步是完成一道算法题的基本步骤&#xff0c;也是其中得分的主要地方就是后面两步。但是前面两…