【Java基础】Java异常处理机制超简单的!!

程序在运行时出现的不正常情况

java把程序运行时出现的各种不正常情况提取属性和行为进行描述,从而出现了各种异常类,也就是异常被面向对象了。

异常名称、异常信息、异常发生的位置

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5(数组下标越界异常类)at Demo2.main(Demo2.java:6)

体系结构

  • Throwable(父类)

    • Error: 表示严重的问题,合理的应用程序不应该试图捕获。

    • Exception: 可以处理的不严重的问题,指示合理的应用程序想要捕获的条件。

      int[] arr=new int[5];
      System.out.println(arr[5]); 
      //throw new ArrayIndexOutOfBoundsException()
      //(数组下标越界异常类)
      System.out.println("hehe");//程序中断,不打印
      

      当发生数组下标越界异常时:

      因为这种异常(ArrayIndex0utOfBoundsException)java内部已经定义了,所以系统会自动创建一个ArrayIndex0utOfBoundsException类的对象。main无法处理这种异常,抛给了JVM。JVM默认的处理异常的方式是,调用异常类对象的printStackTrace方法,printStackTrace方法会打印异常名字、异常信息、异常发生的位置,然后程序中断。

捕获异常

try{可能发生异常的代码
}catch(异常类 参数名){处理异常的代码
}

Throwable常用方法

class MyMath{public int divide(int a,int b){return a/b;//throw new ArithmeticException();}
}
class Demo3{public static void main(String[] args){MyMath math=new MyMath();try{int result=math.divide(5,0);//throw new ArithmeticException();System.out.println(result);}catch (Exception e){//=new ArithmeticException();//System.out.println("除数为0了");String msg=e.getMessage();//异常信息System.out.println(msg);System.out.println(e.toString());//异常类名:异常信息e.printStackTrace();//异常类名:异常信息 异常发生的位置}System.out.println("ok");}
}

在这里插入图片描述

throws声明

  • throws: 声明自己可能发生异常。用在方法的后边,throws后边跟的是异常类。
    一个方法使用throws声明了可能发生异常,那么调用者必须处理,处理方式有两种:

    1. 使用try{}catch(){}处理
    2. 调用者继续使用throws声明自己可能异常

    如果不使用try{}catch(){}处理就会出现程序编译正常,运行出问题

    class MyMath{public int divide(int a,int b)throws Exception{return a/b;}
    }
    class Demo4{public static void main(String[] args)//throws Exception{MyMath math=new MyMath();int result=math.divide(5,0);System.out.println(result);}
    }
    

    在这里插入图片描述

多重异常

  • 当要捕获多个异常时,子类异常要写在父类异常前面。
  • 声明的才是需要处理的
class MyMath{public int divide(int a, int b)throws ArrayIndexOutOfBoundsException,ArithmeticException//声明自己可能发生异常.{int[] arr=new int[3];System.out.println(arr[3]);return a/b;}
}
class Demo5
{public static void main(String[] args){MyMath math=new MyMath();try{int result = math.divide(5,0);System.out.println(result);}catch(ArrayIndexOutOfBoundsException e){System.out.println("下标越界了");}catch(ArithmeticException ee){System.out.println("除数为0了");}//catch(Exception){……} 没有声明的异常不需要处理System.out.println("ok");}
}

在这里插入图片描述

throw

用来手动创建异常类对象,使用了throw,必须处理,处理方式有两种

//手动创建异常类
class FuShuException extends Exception{FuShuException(){}//构造方法,定义异常信息FuShuException(String message){super(message);}
}
class MyMath{                  //声明用throwspublic int divide(int a, int b)throws FuShuException{if(b<0)throw new FuShuException("除数为负数了");//手动创建异常类对象用throwreturn a/b;}
}
class Demo5{                             //声明用throwspublic static void main(String[] args) throws FuShuException{MyMath math=new MyMath();int result=math.divide(5,-4);System.out.println("Hello World!");}
}

手动抛出异常数据

class FuShuException extends Exception{int num;FuShuException(){}FuShuException(String message ){super(message);}FuShuException(String message,int num){super(message);this.num=num;}public int getNum(){return num;}
}
class MyMath{public int divide(int a, int b)throws FuShuException{if(b<0)throw new FuShuException("除数为负数",b);return a/b;}
}
class Demo5 
{public static void main(String[] args){MyMath math=new MyMath();try{int result=math.divide(5,-4);System.out.println(result);}catch(FuShuException e){//=new FuShuException("除数为负数",b);System.out.println(e.getMessage()+":"+e.getNum());}}
}

throw后面不能再跟语句,但抛出异常的方法后可以。

class Demo
{public static void main(String[] args){try{showExce();System.out.println("A");}catch(Exception e){System.out.println("B");}finally{System.out.println("C");}System.out.println("D");}public static void showExce()throws Exception {throw new Exception();}
}
// BCD
class Demo
{	public static void func(){try{throw  new Exception();System.out.println("A");//10 0%执行不了}catch(Exception e){System.out.println("B");}}public static void main(String[] args){try{func();}catch(Exception e){System.out.println("C");}System.out.println("D");}
}

throws和throw的区别

  1. throws用在函数名的后边,throw用在函数内部
  2. throws后边跟的是类名,throw后边跟的是异常类对象

运行时异常

  • 运行时异常

    • 使用了throw不处理,编译照样通过
    • 使用了throws不处理,编译照样通过
    • 编译时不检测的异常
    • RuntimeException及其子类属于运行时异常
    • 运行时异常,不处理编译也通过,原因是这些异常都是因为数据错误造成的异常。程序就应该中断,处理错误的数据。
  • 非运行时异常

    • 使用了throw,必须处理
    • 使用了throws,必须处理
    • 编译时检测的异常
    • Exception及其子类属于非运行时异常

    非运行异常的练习:老师用电脑上课 day13\Demo10.java

    class LanPingException extends Exception{LanPingException(){}LanPingException(String message){super(message);}
    }
    class MaoYanException extends Exception{MaoYanException(){}MaoYanException(String message){super(message);}
    }
    class TeachProgramException extends Exception{TeachProgramException(){}TeachProgramException(String message){super(message);}
    }
    class Teacher{private String name;private Computer computer;Teacher(){}Teacher(String name){this.name=name;computer=new Computer();}public void teach() throws TeachProgramException{try{System.out.println(name+"老师上课");computer.run();}catch(LanPingException e){System.out.println(e.getMessage());computer.reset();}catch (MaoYanException ee){System.out.println(ee.getMessage());throw new TeachProgramException("上课进度受影响");}}
    }
    class Computer
    {private int state=1;public void run() throws LanPingException,MaoYanException{if(state==1)System.out.println("电脑运行");if(state==2)throw new LanPingException("电脑蓝屏");if(state==3)throw new MaoYanException("电脑冒烟");}public void reset(){System.out.println("电脑重启");}
    }
    class Demo6
    {public static void main(String[] args) {Teacher teacher=new Teacher("张三");try{teacher.teach();}catch (TeachProgramException e){System.out.println("老师休息");System.out.println("学生自习");}}
    }
    
try{throw new Exception();
}catch(Exception e)
{try{throw e;}catch(Exception ee){throw new RuntimeException();}
}

try-catch-finally

  • try {// 可能会发生异常的语句
    } catch(ExceptionType e) {// 处理异常语句
    } finally {// 必须执行的代码(清理代码块)
    }
    
  • try{//正常代码}
    finally{//必须执行的代码(释放资源)
    }
    
  • 使用 try-catch-finally 语句时需注意以下几点:

    1. 异常处理语法结构中只有 try 块是必需的,也就是说,如果没有 try 块,则不能有后面的 catch 块和 finally 块;
    2. catch 块和 finally 块都是可选的,但 catch 块和 finally 块至少出现其中之一,也可以同时出现;
    3. 可以有多个 catch 块,捕获父类异常的 catch 块必须位于捕获子类异常的后面;
    4. 不能只有 try 块,既没有 catch 块,也没有 finally 块;
    5. 多个 catch 块必须位于 try 块之后,finally 块必须位于所有的 catch 块之后。
    6. finally 与 try 语句块匹配的语法格式,此种情况会导致异常丢失,所以不常见。

    一般情况下,无论是否有异常拋出,都会执行 finally 语句块中的语句:

    ​ finally{……}子句是异常处理的出口

    在这里插入图片描述

finally与return的执行顺序

  • 当 try 代码块和 catch 代码块中有 return 语句时,finally 仍然会被执行。
  • 执行 try 代码块或 catch 代码块中的 return 语句之前,都会先执行 finally 语句。
  • 无论在 finally 代码块中是否修改返回值,返回值都不会改变,仍然是执行 finally 代码块之前的值。
  • finally 代码块中的 return 语句一定会执行。当 finally 有返回值时,会直接返回该值,不会去返回 try 代码块或者 catch 代码块中的返回值。

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/833610.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

海淘美国礼品卡测评:AE/TT/香草卡与国内卡商、亚马逊测评工作室如何变现?(下)

上回分析的四种变现模式&#xff0c;相信大家已经了解清楚。 塔吉特礼品卡&#xff0c;香草礼品卡&#xff0c;AE礼品卡&#xff0c;百思买礼品卡&#xff0c;亚马逊礼品卡&#xff0c;沃尔玛礼品卡&#xff0c;丝芙兰礼品卡&#xff0c;雷蛇礼品卡&#xff0c;谷歌礼品卡&…

处理推送被拒绝的问题

处理推送被拒绝的问题 问题描述 error: failed to push some refs to hint: Updates were rejected because the remote contains work that you do not have locally. This is usually caused by another repository pushing to the same ref. You may want to first integ…

大模型入门(二)—— PEFT

PEFT&#xff08;Parameter-Efficient Fine-Tuning&#xff09;是hugging face开源的一个参数高效微调大模型的工具&#xff0c;里面集成了4中微调大模型的方法&#xff0c;可以通过微调少量参数就达到接近微调全量参数的效果&#xff0c;使得在GPU资源不足的情况下也可以微调大…

《ElementUI 基础知识》el-tree 之“我的电脑”目录结构效果

前言 项目需求&#xff0c;Web 端获取服务器文件夹目录结构。目录数据是调接口获取&#xff0c;本篇略过&#xff0c;直接展现数据&#xff01; 效果 实现 html 代码 8 - 15 行&#xff0c;自定义节点信息&#xff1b;代码 9 - 14 行&#xff0c;判断 icon 显示&#xff1b…

[沫忘录]MySQL储存对象

[沫忘录]MySQL储存对象 视图 视图本质是对原表(基表)显示上的裁剪&#xff0c;可以当作表进行操作&#xff0c;其操作的结果会直接反馈到原表上&#xff0c;即对视图的操作实质上是对原表的操作。 MySQL不仅支持为基表创建视图&#xff0c;同时也支持为视图创建视图。 基本语…

如何备份firewalld的配置信息?

要备份Firewalld的配置信息&#xff0c;您可以通过以下步骤进行&#xff1a; 备份配置文件&#xff1a; Firewalld的配置文件位于/etc/firewalld/目录下。您可以使用cp命令来备份这些文件到其他位置&#xff0c;例如&#xff1a; cp -r /etc/firewalld/zones /path/to/backup…

Bumblebee X系列用于高精度机器人应用的新型立体视觉产品

Bumblebee X是最新的GigE驱动立体成像解决方案&#xff0c;为机器人引导和拾取应用带来高精度和低延迟。 近日&#xff0c;51camera的合作伙伴Teledyne FLIR IIS推出一款用于高精度机器人应用的新型立体视觉产品Bumblebee X系列。 Bumblebee X产品图 BumblebeeX系列&#xff…

在JavaScript中获取当前页面路径的方法

在Web开发中&#xff0c;我们经常需要获取当前页面的URL路径&#xff0c;以便进行导航、数据加载或其他与页面相关的操作。JavaScript提供了几种方法来帮助我们实现这一功能。在本文中&#xff0c;我们将探讨几种常用的方法。 方法一&#xff1a;使用 window.location 对象 wi…

百度云内容审核快速配置 (java)

为什么要选择百度云 &#xff1f; 因为他免费用一年 首先要先开通百度云内容安全服务 按照操作指引走完整套 ContentCensor Java SDK目录结构** com.baidu.aip├── auth //签名相关类├── http //Http通…

IDEA 好用的插件

图标插件&#xff1a;Atom Material Icons 此插件的作用就是更好的显示各种文件的类别&#xff0c;使之一目了然 汉化包 Chinese ​(Simplified)​ Language Pack / 中文语言包 作用就是 汉化 AI编码助手 GitHub Copilot AI编码助手&#xff1a;提示代码很好用 缺点&#xff1a…

vue3在router中使用pinia报错解决

问题 在router中使用pinia&#xff08;getActivePinia was called with no active Pinia. Did you forget to install pinia&#xff09;报错解决 解决 store/index.ts import { createPinia } from piniaconst pinia createPinia() export default piniamain.ts&#xff…

使用perf查看热点函数和系统调用最大延迟函数

1、安装perf工具 1.1、ubuntu 18.04 x86下的安装 安装sudo apt install linux-source sudo apt install linux-tools-uname -r # ubuntu 18.04虚拟机实操可行 1.2、ubuntu 18.04 ARM下的安装 参考 Nvidia Jetson系列产品安装Perf ​ARM64版本的Ubuntu上安装perf 与参考文…

windows11获取笔记本电脑电池健康报告

笔记本电脑的电池关系到我们外出时使用的安全&#xff0c;如果电池健康有问题需要及时更换&#xff0c;windows系统提供了检查电池健康度的方法。 1、打开命令行 1&#xff09;键入 winR 2&#xff09;键入 cmd 打开命令行。 2、在命令行运行如下指令&#xff0c;生成电池健…

DI-engine强化学习入门(九)环境包裹器(Env Wrapper)

在强化学习中&#xff0c;环境&#xff08;Environment&#xff09;是智能体&#xff08;Agent&#xff09;进行学习和互动的场所&#xff0c;它定义了状态空间、动作空间以及奖励机制。Env Wrapper&#xff08;环境包装器&#xff09;提供了一种方便的机制来增强或修改原始环境…

qt lnk2019 其中一种情况(obj未生成)

目录结果 dir1: test1.pri test1.h main.cpp test1.h中内容&#xff1a; class Test{ public:void test(); }; main.cpp中引用&#xff1a; Test test; test.test(); 编译时一直报lnk2019 找不到test函数&#xff0c;找不到Test的构造析构方法&#xff1b; 最终经过排查发…

很好的Baidu Comate,使我的编码效率飞起!

文章目录 背景及简单介绍Baidu Comate安装功能演示总结 &#x1f381;写在前面&#xff1a; 观众老爷们好呀&#xff0c;这里是前端小刘不怕牛牛频道&#xff0c;今天牛牛在论坛发现了一款便捷实用的智能编程助手&#xff0c;就是百度推出的Baidu Comate。下面是Baidu Comate评…

P2001装箱问题

题目描述: 有一个箱子容量为 &#x1d449;V&#xff0c;同时有 &#x1d45b;n 个物品&#xff0c;每个物品有一个体积。 现在从 &#x1d45b;n 个物品中&#xff0c;任取若干个装入箱内&#xff08;也可以不取&#xff09;&#xff0c;使箱子的剩余空间最小。输出这个最小…

MT3034 算术招亲

跟MT3033新的表达式类似&#xff0c;只多了一个括号合法性的判断 #include <bits/stdc.h> using namespace std; const int N 40; bool tag[N]; bool is_op(char c) {return c || c - || c * || c / || c ^; } int priority(char op) { // 优先级排序if (op ||…

pip opencv-python其一失败原因解决方案

pip opencv-python其一失败原因解决方案 错误原因&#xff1a; ----------------------------------------ERROR: Failed building wheel for opencv-pythonFailed to build opencv-pythonERROR: Could not build wheels for opencv-python which use PEP 517 and cannot be in…

QT 设置窗口不透明度

在窗口作为子窗口时&#xff0c;setWindowOpacity设置窗口的不透明度可能会失效。 QGraphicsOpacityEffect *opacityEffect new QGraphicsOpacityEffect(this); opacityEffect->setOpacity(1.0); this->setGraphicsEffect(opacityEffect);// 创建属性动画对象&#xff…