一:引出异常

  1. public class Test {
  2. public static void main(String[] args) {
  3. //1. num1 / num2 => 10 / 0
  4. //2. 当执行到 num1 / num2 因为 num2 = 0,
  5. //程序就会出现(抛出)异常 ArithmeticException
  6. //3. 当抛出异常后,程序就退出,崩溃了 , 下面的代码就不在执行
  7. int num1 = 10;
  8. int num2 = 0;
  9. //将该代码块->选中->快捷键 ctrl + alt + t -> 选中 try-catch
  10. //4. 如果进行异常处理,那么即使出现了异常,程序可以继续执行
  11. try {
  12. int res = num1 / num2;
  13. } catch (Exception e) {
  14. e.printStackTrace();
  15. //也可以输出异常错误信息
  16. System.out.println(e.getMessage());
  17. }
  18. System.out.println("程序继续运行....");
  19. }
  20. }

二:基本概述

Java语言中,将程序执行中发生的不正常情况称为“异常”,(在开发过程中的语法错误和罗技错误不是异常)

  • 执行过程中锁发生的异常事件可分为两大类
    • Error(错误):Java虚拟机无法解决的严重问题。如 : JVM系统内部错误、资源耗尽等严重情况。比如:StackOverflowError [ 栈溢出 ] 和 OOM ( out of memory). Error是严重错误,程序会崩溃。
    • Exception:其它因编程错误或偶然的外在因素导致的一般性问题,可以使用针对性的代码进行处理。例如空指针访问,试图读取不存在的文件,网络连接中断等等,Exception分为两大类:
      • 运行时异常__[程序运行时,发生的异常]
      • 编译时异常__[编程时,编译器检查出的异常]。

        三:异常体系图一览

        image.png

image.png
image.png

  1. 异常分为两大类,运行时异常和编译时异常
  2. 运行时异常,编译器检查不出来。一般是指编程时的逻辑错误,是程序员应该避免其出现的异常。java.lang.RuntimeException类及它的子类都是运行时异常
  3. 对于运行时异常,可以不作处理,因为这类异常很普遍,若全处理可能会对程序的可读性和运行效率产生影响
  4. 编译时异常,是编译器要求必须处置的异常。

    四:常见的运行时异常

    1:常见的运行时异常包括

  5. NullPointerException 空指针异常

  6. ArithmeticException 数学运算异常
  7. ArrayIndexOutOfBoundsException 数组下标越界异常
  8. ClassCastException 类型转换异常
  9. NumberFormatException 数字格式不正确异常 [ ]

    2:常见的运行时异常举例

    <1>NullPointerException 空指针异常
    1. public class Test {
    2. public static void main(String[] args) {
    3. String name = null;
    4. System.out.println(name.length());
    5. }
    6. }
    <2>ArithmeticException 数学运算异常
    1. public class Test {
    2. public static void main(String[] args) {
    3. int num1 = 10;
    4. int num2 = 0;
    5. int res = num1 / num2;
    6. }
    7. }
    <3>ArrayIndexOutOfBoundsException 数组下标越界异常
    1. public class Test {
    2. public static void main(String[] args) {
    3. int[] arr = {1,1,3,4,6};
    4. for (int i = 0; i < 6; i++) {
    5. System.out.println(arr[i]);
    6. }
    7. }
    8. }
    <4>ClassCastException 类型转换异常
    1. public class Test {
    2. public static void main(String[] args) {
    3. A b = new B(); /*向上转型*/
    4. B b1 = (B)b; /*向下转型*/
    5. C c = (C)b; /*B和C是没有关系的*/
    6. }
    7. }
    8. class A{
    9. }
    10. class B extends A{
    11. }
    12. class C extends A{
    13. }
    <5>NumberFormatException 数字格式不正确异常 [ ]
    1. public class Test {
    2. public static void main(String[] args) {
    3. String name = "1234";
    4. String name1 = "sakura";
    5. int num = Integer.parseInt(name1);//不能将字符串转为数字
    6. System.out.println(num);
    7. }
    8. }

    五:编译异常

    编译异常是指在编译期间,就必须处理的异常,否则代码不能通过编译。
  • SQLException //操作数据库时,查询表可能发生异常
  • IOException //操作文件时,发生的异常
  • FileNotFoundException //当操作一个不存在的文件时,发生异常
  • ClassNotFoundException //加载类,而该类不存在时,异常
  • EOFException //操作文件,到文件末尾,发生异常
  • IllegalArguementException //参数异常

    1:案例说明

    1. public class Exception02 {
    2. public static void main(String[] args) {
    3. try {
    4. FileInputStream fis;
    5. fis = new FileInputStream("d:\\aa.jpg");
    6. int len;
    7. while ((len = fis.read()) != -1) {
    8. System.out.println(len);
    9. }
    10. fis.close();
    11. } catch (IOException e) {
    12. e.printStackTrace();
    13. }
    14. }
    15. }

    六:练习

    image.png
    下标越界, 空指针异常,数学运算异常,类型装换异常