当前位置:   article > 正文

【JAVA基础篇教学】第七篇:Java异常类型说明

【JAVA基础篇教学】第七篇:Java异常类型说明

博主打算从0-1讲解下java基础教学,今天教学第七篇:Java异常类型说明。  

在Java中,错误(Error)是Throwable类及其子类的实例,它们通常表示严重的问题,无法通过程序来处理,而是需要进行系统级别的调整或修复。以下是Java中常见的错误类型及其说明!

1. OutOfMemoryError

OutOfMemoryError表示Java虚拟机内存耗尽,无法再分配内存。通常发生在应用程序尝试创建太多对象或者占用太多内存时。

  1. public class OutOfMemoryErrorExample {
  2. public static void main(String[] args) {
  3. List<Integer> list = new ArrayList<>();
  4. while (true) {
  5. list.add(1); // 内存耗尽,抛出OutOfMemoryError
  6. }
  7. }
  8. }

2. StackOverflowError

StackOverflowError表示Java虚拟机栈溢出,通常发生在方法调用的递归层次过深,导致栈空间耗尽。

  1. public class StackOverflowErrorExample {
  2. public static void main(String[] args) {
  3. recursiveMethod(1);
  4. }
  5. public static void recursiveMethod(int i) {
  6. recursiveMethod(i + 1); // 递归调用,导致栈溢出
  7. }
  8. }

3. NoClassDefFoundError

NoClassDefFoundError表示Java虚拟机在运行时找不到类的定义,通常发生在类路径配置错误或者类文件被移除的情况下。

  1. public class NoClassDefFoundErrorExample {
  2. public static void main(String[] args) {
  3. // 引用不存在的类
  4. NonExistentClass obj = new NonExistentClass();
  5. }
  6. }

4. NoSuchMethodError

NoSuchMethodError表示在运行时找不到方法的定义,通常发生在方法调用时版本不一致或者方法被删除的情况下。

  1. public class NoSuchMethodErrorExample {
  2. public static void main(String[] args) {
  3. // 调用不存在的方法
  4. NonExistentClass.nonExistentMethod();
  5. }
  6. }

5. InternalError

InternalError表示Java虚拟机遇到了内部错误,无法继续执行。这通常是Java虚拟机本身的问题,需要进行调整或者升级虚拟机版本来解决。

  1. public class InternalErrorExample {
  2. public static void main(String[] args) {
  3. // 虚拟机内部错误
  4. throw new InternalError("Internal error occurred");
  5. }
  6. }

6. ClassNotFoundException

ClassNotFoundException 表示在运行时找不到类的定义,通常发生在尝试使用 Class.forName() 方法加载类时,但该类不存在于类路径中的情况下。

  1. public class ClassNotFoundExceptionExample {
  2. public static void main(String[] args) {
  3. try {
  4. // 加载不存在的类
  5. Class.forName("NonExistentClass");
  6. } catch (ClassNotFoundException e) {
  7. System.out.println("Class not found: " + e.getMessage());
  8. }
  9. }
  10. }

7. NoSuchFieldError

NoSuchFieldError 表示在运行时找不到类的字段定义,通常发生在尝试访问不存在的字段时。

  1. public class NoSuchFieldErrorExample {
  2. public static void main(String[] args) {
  3. NonExistentClass obj = new NonExistentClass();
  4. // 访问不存在的字段
  5. System.out.println(obj.nonExistentField);
  6. }
  7. }

8. AssertionError

AssertionError 表示断言失败,通常用于在代码中插入断言以便检查某些条件是否满足,但是在运行时断言失败。

  1. public class AssertionErrorExample {
  2. public static void main(String[] args) {
  3. int x = 10;
  4. // 断言条件失败,抛出AssertionError
  5. assert x == 5 : "x should be 5";
  6. }
  7. }

9. UnsupportedClassVersionError

UnsupportedClassVersionError 表示类的版本不受支持,通常发生在尝试在低版本的Java虚拟机上运行高版本的类文件时。

  1. public class UnsupportedClassVersionErrorExample {
  2. public static void main(String[] args) {
  3. // 尝试运行高版本类文件在低版本虚拟机上
  4. Java8Features obj = new Java8Features();
  5. }
  6. }

10. NullPointerException

NullPointerException 表示尝试在对象上调用方法或访问属性时,对象引用为 null,导致空指针异常。

  1. public class NullPointerExceptionExample {
  2. public static void main(String[] args) {
  3. String str = null;
  4. // 调用空引用的方法,抛出 NullPointerException
  5. System.out.println(str.length());
  6. }
  7. }

11. ArrayIndexOutOfBoundsException

ArrayIndexOutOfBoundsException 表示尝试访问数组中不存在的索引位置时,导致数组下标越界异常。

  1. public class ArrayIndexOutOfBoundsExceptionExample {
  2. public static void main(String[] args) {
  3. int[] arr = new int[5];
  4. // 访问数组不存在的索引,抛出 ArrayIndexOutOfBoundsException
  5. System.out.println(arr[10]);
  6. }
  7. }

12. ArithmeticException

ArithmeticException 表示在进行数学运算时发生算术错误,例如除以零或取模零。

  1. public class ArithmeticExceptionExample {
  2. public static void main(String[] args) {
  3. int x = 10, y = 0;
  4. // 除以零,抛出 ArithmeticException
  5. System.out.println(x / y);
  6. }
  7. }

13. ClassCastException

ClassCastException 表示尝试将对象强制转换为其子类时发生类型转换错误。

  1. public class ClassCastExceptionExample {
  2. public static void main(String[] args) {
  3. Object obj = new Integer(10);
  4. // 尝试将 Integer 类型转换为 String 类型,抛出 ClassCastException
  5. String str = (String) obj;
  6. }
  7. }

14. IllegalArgumentException

IllegalArgumentException 表示方法接收到了一个不合法的参数,通常在参数检查不通过时抛出。

  1. public class IllegalArgumentExceptionExample {
  2. public static void main(String[] args) {
  3. // 调用方法时传入不合法的参数,抛出 IllegalArgumentException
  4. divide(10, 0);
  5. }
  6. public static void divide(int x, int y) {
  7. if (y == 0) {
  8. throw new IllegalArgumentException("Denominator cannot be zero");
  9. }
  10. System.out.println(x / y);
  11. }
  12. }

先简单介绍这么多吧。后续再补充!!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/412403
推荐阅读
相关标签
  

闽ICP备14008679号