一些运行时异常及其对应的例子

1、NullPointException 空指针异常

一些运行时异常及其对应的例子_第1张图片

2、ArithmeticException  数学异常

一些运行时异常及其对应的例子_第2张图片

3、ClassCastException  类型转换异常

一些运行时异常及其对应的例子_第3张图片

4、ArrayIndexOutOfBoundsException 数组下标越界异常

一些运行时异常及其对应的例子_第4张图片

5、StringIndexOutOfBoundsException字符串下标越界

一些运行时异常及其对应的例子_第5张图片

6、IndexOutOfBoundsException  下标越界异常

一些运行时异常及其对应的例子_第6张图片

7、NumberFormatException 数字格式化异常

一些运行时异常及其对应的例子_第7张图片

8、InputMismatchException  输入不匹配异常

一些运行时异常及其对应的例子_第8张图片

9、ArrayStoreException  数组协变异常

一些运行时异常及其对应的例子_第9张图片

10、ConcurrentModificationException   快速报错异常

当打开一个迭代器以后,一直到迭代完毕之前,不能给集合中删除、增加任何元素,否则会抛出该异常。

11、UnsupportedOperationException  不支持该操作异常

一些运行时异常及其对应的例子_第10张图片

12、 NoSuchElementException    没有这么一个元素异常

一些运行时异常及其对应的例子_第11张图片

13、IllegealMonitorStateException  非法监听器状态异常

当在同步块之外,使用锁时,就会抛出,IllegealMonitorStateExecption.  

14、EmptyStackException 空栈异常

一些运行时异常及其对应的例子_第12张图片










你可能感兴趣的:(编程学习)