1.异常概述与异常体系结构

image.png
image.png

2.常见异常

  1. package com.atguigu.java;
  2. import java.io.File;
  3. import java.util.Date;
  4. import java.util.Scanner;
  5. import org.junit.Test;
  6. /*
  7. * 一、异常体系结构
  8. *
  9. * java.lang.Throwable
  10. * |------java.lang.Error:一般不便携针对性的代码进行处理
  11. * |------java.lang.Exception:可以进行异常的处理
  12. * |------编译时异常(check)
  13. * |-------IOException
  14. * |------FileNotFoundException
  15. *
  16. * |-------ClassNotFoundException
  17. *
  18. * |------运行时异常(uncheck)
  19. * |-------NullPointException
  20. * |-------ArrayIndexOutOfBoundsException
  21. * |-------ClassCastException
  22. * |-------NumberFormatException
  23. * |-------InputMismatchException
  24. * |-------ArithmeticException
  25. * .
  26. * .
  27. * .
  28. *
  29. */
  30. public class ExceptionTest {
  31. //******************以下是编译时异常***************************
  32. @Test
  33. public void test7(){
  34. File file =new File("hello.txt");
  35. 见图片代码
  36. }
  37. //*******************以下是运行时异常***************************
  38. //ArithmeticException算术异常
  39. @Test
  40. public void test6(){
  41. // int a=10;
  42. // int b=0;
  43. // System.out.println(a/b);
  44. }
  45. //InputMismatchException 输入不匹配
  46. @Test
  47. public void test5(){
  48. //当输入是一个int形的,那就正常输出,如果输入不一致类型的就会报错
  49. Scanner scanner =new Scanner(System.in);
  50. // int score =scanner.nextInt();
  51. // System.out.println(score);
  52. scanner.close();
  53. }
  54. //NumberFormatException
  55. @Test
  56. public void test4(){
  57. String string ="123";
  58. String s1="abc";
  59. // int num =Integer.parseInt(s1);
  60. }
  61. //ClassCastException 类型转换异常
  62. @Test
  63. public void test3(){
  64. // Object object=new Date();
  65. // String string =(String)object;
  66. }
  67. //ArrayIndexOutOfBoundsException //数组角标越界
  68. @Test
  69. public void test2(){
  70. // int[] arr =new int[3];
  71. // System.out.println(arr[4]);
  72. //StringIndexOutOfBoundsException //字符串角标越界
  73. // String string ="abc";
  74. // System.out.println(string.charAt(3));
  75. //
  76. }
  77. //NullPointException 空指针异常
  78. @Test
  79. public void test1(){
  80. // int[] arr =new int[3];
  81. // System.out.println(arr[3]);
  82. }
  83. }

image.png

3.异常处理机制一:try-catch-finally

image.png

3.1try-catch的使用

  1. package com.atguigu.java;
  2. import org.junit.Test;
  3. /*
  4. * 一、异常的处理:抓抛模型
  5. *
  6. * 过程一:“抛”:程序在正常执行的过程中,一旦出现异常,就会在异常代码处生成一个对应异常类的对象
  7. * 并将此对象抛出。
  8. * 一旦抛出对象以后,其后的代码就不再执行。
  9. *
  10. * 过程二:“抓”:可以理解为异常的处理方式:①try-catch-finally ②throws
  11. *
  12. * 二、try-catch-finally的使用
  13. *
  14. * try{
  15. * //可能出现异常的代码
  16. *
  17. * }catch(异常类型1 变量名1){
  18. *
  19. * //处理异常的方式1
  20. * }
  21. * catch(异常类型2 变量名2){
  22. *
  23. * //处理异常的方式2
  24. * }
  25. * catch(异常类型3 变量名3){
  26. *
  27. * //处理异常的方式3
  28. * }
  29. *.......
  30. * finally{
  31. *
  32. * //一定会执行的代码
  33. * }
  34. *
  35. * 说明:
  36. * 1.finally是可选的
  37. * 2.使用try将可能出现异常代码包装起来,在执行过程中,一旦出现异常,就会生成一个对应的异常类的对象,根据此对象的类型
  38. * 去catch中进行匹配
  39. * 3.一旦try的异常对象匹配到某一个catch时,就进入catch中进行异常的处理。一旦处理完成 ,就跳出try-catch结构
  40. * (在没有写finally的情况下)继续执行其后的代码
  41. *
  42. * 4.catch中的异常没有子父类关系,则谁声明再上,谁在下都无所谓
  43. * catch中的异常类型如果满足子父类关系,则要求子类一定要声明在父类之上,否则,报错
  44. * 5.常用的异常对象处理的方式:① String getMessage() ②printStackTrace();
  45. * 6.在try结构中声明的变量,在出了try结构以后,就不能再被调用
  46. *
  47. * 体会:使用try-catch-finally 处理编译时异常,是程序在编译时不再报错,但是运行时仍可能报错
  48. * 相当于我们使用try-catch-finally将一个编译时可能出现的异常,延迟到运行时出现
  49. */
  50. public class ExceptionTest1 {
  51. @Test
  52. public void test4(){
  53. String string ="123";
  54. String s1="abc";
  55. int num=0;
  56. try{
  57. System.out.println("hello------1");
  58. num =Integer.parseInt(s1);
  59. //抓到抛出的异常后,就会去执行catch语句
  60. System.out.println("hello------2");
  61. }catch(NumberFormatException e){
  62. // System.out.println("出现数值转换异常,不要着急......");
  63. //使用string getMessage();
  64. // System.out.println(e.getMessage());
  65. //使用printStackTrace()
  66. e.printStackTrace();
  67. }
  68. catch(NullPointerException e){
  69. System.out.println("出现空指针异常,不要着急......");
  70. }
  71. catch(Exception e){
  72. System.out.println("出现异常,不要着急......");
  73. }
  74. System.out.println(num);
  75. }
  76. }

3.2finally的使用

  1. package com.atguigu.java;
  2. import org.junit.Test;
  3. /*
  4. * 一、异常的处理:抓抛模型
  5. *
  6. * 过程一:“抛”:程序在正常执行的过程中,一旦出现异常,就会在异常代码处生成一个对应异常类的对象
  7. * 并将此对象抛出。
  8. * 一旦抛出对象以后,其后的代码就不再执行。
  9. *
  10. * 过程二:“抓”:可以理解为异常的处理方式:①try-catch-finally ②throws
  11. *
  12. * 二、try-catch-finally的使用
  13. *
  14. * try{
  15. * //可能出现异常的代码
  16. *
  17. * }catch(异常类型1 变量名1){
  18. *
  19. * //处理异常的方式1
  20. * }
  21. * catch(异常类型2 变量名2){
  22. *
  23. * //处理异常的方式2
  24. * }
  25. * catch(异常类型3 变量名3){
  26. *
  27. * //处理异常的方式3
  28. * }
  29. *.......
  30. * finally{
  31. *
  32. * //一定会执行的代码
  33. * }
  34. *
  35. * 说明:
  36. * 1.finally是可选的
  37. * 2.使用try将可能出现异常代码包装起来,在执行过程中,一旦出现异常,就会生成一个对应的异常类的对象,根据此对象的类型
  38. * 去catch中进行匹配
  39. * 3.一旦try的异常对象匹配到某一个catch时,就进入catch中进行异常的处理。一旦处理完成 ,就跳出try-catch结构
  40. * (在没有写finally的情况下)继续执行其后的代码
  41. *
  42. * 4.catch中的异常没有子父类关系,则谁声明再上,谁在下都无所谓
  43. * catch中的异常类型如果满足子父类关系,则要求子类一定要声明在父类之上,否则,报错
  44. * 5.常用的异常对象处理的方式:① String getMessage() ②printStackTrace();
  45. * 6.在try结构中声明的变量,在出了try结构以后,就不能再被调用
  46. *
  47. * 体会1:使用try-catch-finally 处理编译时异常,是程序在编译时不再报错,但是运行时仍可能报错
  48. * 相当于我们使用try-catch-finally将一个编译时可能出现的异常,延迟到运行时出现
  49. *
  50. * 体会2:开发中,由于运行时异常,所以我们通常就不针对运行时异常编写try-catch-finally了。
  51. * 针对于编译时异常,我们说一定要考虑异常的处理。
  52. *
  53. */
  54. public class ExceptionTest1 {
  55. @Test
  56. public void test4(){
  57. String string ="123";
  58. String s1="abc";
  59. int num=0;
  60. try{
  61. System.out.println("hello------1");
  62. num =Integer.parseInt(s1);
  63. //抓到抛出的异常后,就会去执行catch语句
  64. System.out.println("hello------2");
  65. }catch(NumberFormatException e){
  66. // System.out.println("出现数值转换异常,不要着急......");
  67. //使用string getMessage();
  68. // System.out.println(e.getMessage());
  69. //使用printStackTrace()
  70. e.printStackTrace();
  71. }
  72. catch(NullPointerException e){
  73. System.out.println("出现空指针异常,不要着急......");
  74. }
  75. catch(Exception e){
  76. System.out.println("出现异常,不要着急......");
  77. }
  78. System.out.println(num);
  79. }
  80. }

4.异常处理机制二:throws

4.1异常处理的方式二:throws+异常类型

  1. package com.atguigu.java;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileNotFoundException;
  5. import java.io.IOException;
  6. import java.nio.file.FileAlreadyExistsException;
  7. /*
  8. * 异常处理的方式二:throws+异常类型
  9. *
  10. * 1."throws+异常类型"写在方法的声明处,指明此方法执行时,可能会抛出的异常类型
  11. * 一旦当方法体执行时,出现异常,仍会在异常代码处生成一个异常类的对象,此对象满足
  12. * throws后异常类型时,就会被抛出,异常代码的后续代码将不再被执行
  13. *
  14. * 2.体会:try-catch-finally:真正的将异常给处理掉了
  15. * throws的方式只是将异常抛给了方法的调用者,并没有将异常真正的处理掉
  16. *
  17. * 3.开发中如何选择使用try—catch-finally 还是使用throws?
  18. * 3.1 如果父类中被重写的方法没有throws方法处理异常,则子类重写的方法也不能使用throws,意味着如果
  19. * 子类重写的方法中有异常,必须使用try-catch-finally方式处理
  20. * 3.2执行的方法a中,先后又调用了另外的几个方法,这几个方法是递进关系执行的。我们建议这几个方法使用throws的方式进行处理
  21. * 而执行的方法a可以考虑使用try-catch-finally进行处理
  22. *
  23. */
  24. public class ExceptionTest2 {
  25. public static void main(String[] args){
  26. try {
  27. method2();
  28. } catch (IOException e) {
  29. e.printStackTrace();
  30. }
  31. method3();
  32. }
  33. public static void method3(){
  34. try {
  35. method2();
  36. } catch (FileNotFoundException e) {
  37. e.printStackTrace();
  38. } catch (IOException e) {
  39. e.printStackTrace();
  40. }
  41. }
  42. public static void method2() throws FileNotFoundException,IOException{
  43. method1();
  44. }
  45. public static void method1() throws FileNotFoundException,IOException{
  46. File file =new File("hello.txt");
  47. FileInputStream fis =new FileInputStream(file);
  48. int data =fis.read();
  49. while(data!=-1){
  50. System.out.println((char)data);
  51. data=fis.read();
  52. }
  53. fis.close();
  54. }
  55. }

4.2异常方法重写的规则

  1. package com.atguigu.java;
  2. import java.io.FileNotFoundException;
  3. import java.io.IOException;
  4. /*
  5. * 方法重写的规则之一:
  6. * 子类重写的方法抛出的异常类型不大于父类被重写的方法抛出的异常类型
  7. *
  8. *
  9. *
  10. *
  11. */
  12. public class OverrideTest {
  13. public static void main(String[] args) {
  14. OverrideTest test =new OverrideTest();
  15. test.display(new SubClass());
  16. }
  17. public void display(SuperClass s){
  18. try {
  19. s.method();
  20. } catch (IOException e) {
  21. e.printStackTrace();
  22. }
  23. }
  24. }
  25. class SuperClass{
  26. public void method()throws IOException{
  27. }
  28. }
  29. class SubClass extends SuperClass{
  30. public void method() throws FileNotFoundException{
  31. }
  32. }

5.手动抛出异常:throw

  1. package com.atguigu.java;
  2. import javax.management.RuntimeErrorException;
  3. public class throwhand {
  4. public static void main(String[] args) throws Exception {
  5. Student student=new Student();
  6. student.regist(-1001);
  7. System.out.println(student);
  8. }
  9. @Override
  10. public String toString() {
  11. return "throwhand [getClass()=" + getClass() + ", hashCode()="
  12. + hashCode() + ", toString()=" + super.toString() + "]";
  13. }
  14. }
  15. class Student{
  16. private int id;
  17. public void regist(int id) throws Exception{
  18. if(id>0){
  19. this.id =id;
  20. }else{
  21. // System.out.println("您输入的数据非法!");
  22. //手动抛出异常对象
  23. // throw new RuntimeException("您输入的数据非法!");
  24. throw new Exception("您输入的数据非法!");
  25. }
  26. }
  27. }

image.png

6.用户自定义异常类