Java_常见的RuntimeException

  • ConcurrentModificationException:并发修改异常
  • ArithmeticException:算数异常,如果除数为0时。
  • ArrayStoreException:对象数组存入元素时类型不匹配。
  • ClassCastException:对象转换异常
  • DateTimeException:构建日期时异常
  • DOMException:DOM异常
  • IndexOutOfBoundsException:索引越界异常
    • ArrayIndexOutOfException:数组索引越界
    • StringIndexOutOfException:字符串索引越界
  • NegativeArraySizeException:创建数组长度为负数异常
  • NullPointerException:空指针异常
  • NumberFormatException:字符串转换为基本数据类型时异常

你可能感兴趣的:(Java_基础)