1、Throwable

image.png

1.1 Error

程序中无法处理的错误,表示运行应用程序中出现了严重的错误。

1.2 Exception

程序本身可以捕获并且可以处理的异常。Exception 这种异常又分为两类:
运行时异常:Java 编译器不会检查它
编译时异常:Java 编译器会检查它。

2、java异常关键字

• try – 用于监听。将要被监听的代码(可能抛出异常的代码)放在try语句块之内,当try语句块内发生异常时,异常就被抛出。
• catch – 用于捕获异常。catch用来捕获try语句块中发生的异常。
• finally – finally语句块总是会被执行。它主要用于回收在try块里打开的物力资源(如数据库连接、网络连接和磁盘文件)。只有finally块,执行完成之后,才会回来执行try或者catch块中的return或者throw语句,如果finally中使用了return或者throw等终止方法的语句,则就不会跳回执行,直接停止。
• throw – 用于抛出异常。
• throws – 用在方法签名中,用于声明该方法可能抛出的异常。
image.png

3、自定义异常

步骤:
(1)继承 Exception 或 RuntimeException
(2)定义构造方法
(3)使用异常
自定义异常类

  1. /**IllegalAgeException:非法年龄异常,继承Exception类*/
  2. class IllegalAgeException extends Exception {
  3. //默认构造器
  4. public IllegalAgeException() {
  5. }
  6. //带有详细信息的构造器,信息存储在message中
  7. public IllegalAgeException(String message) {
  8. super(message);
  9. }
  10. }

自定义异常类的使用

  1. class Person {
  2. private String name;
  3. private int age;
  4. public void setName(String name) {
  5. this.name = name;
  6. }
  7. public void setAge(int age) throws IllegalAgeException {
  8. if (age < 0) {
  9. throw new IllegalAgeException("人的年龄不应该为负数");
  10. }
  11. this.age = age;
  12. }
  13. public String toString() {
  14. return "name is " + name + " and age is " + age;
  15. }
  16. }
  17. public class TestMyException {
  18. public static void main(String[] args) {
  19. Person p = new Person();
  20. try {
  21. p.setName("Lincoln");
  22. p.setAge(-1);
  23. } catch (IllegalAgeException e) {
  24. e.printStackTrace();
  25. System.exit(-1);
  26. }
  27. System.out.println(p);
  28. }
  29. }

运行结果:
image.png

4、throw 和 throws 区别

  • throw:是真实抛出一个异常。
  • throws:是声明可能会抛出一个异常。

5、try-catch-finally 中哪个部分可以省略?

try-catch-finally 其中 catch 和 finally 都可以被省略,但是不能同时省略,也就是说有 try 的时候,必须后面跟一个 catch 或者 finally。

6、try-catch-finally 中,如果 catch 中 return 了,finally 还会执行吗?

finally 一定会执行,即使是 catch 中 return 了,catch 中的 return 会等 finally 中的代码执行完之后,才会执行。

7、常见的异常类?

  • NullPointerException 空指针异常
  • ClassNotFoundException 指定类不存在
  • NumberFormatException 字符串转换为数字异常
  • IndexOutOfBoundsException 数组下标越界异常
  • ClassCastException 数据类型转换异常
  • FileNotFoundException 文件未找到异常
  • NoSuchMethodException 方法不存在异常
  • IOException IO 异常
  • SocketException Socket 异常