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

来源:互联网 发布:microsoft相机软件 编辑:程序博客网 时间:2024/06/04 22:33

1、NullPointException 空指针异常


2、ArithmeticException  数学异常

3、ClassCastException  类型转换异常


4、ArrayIndexOutOfBoundsException 数组下标越界异常


5、StringIndexOutOfBoundsException字符串下标越界


6、IndexOutOfBoundsException  下标越界异常


7、NumberFormatException 数字格式化异常


8、InputMismatchException  输入不匹配异常


9、ArrayStoreException  数组协变异常


10、ConcurrentModificationException   快速报错异常

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

11、UnsupportedOperationException  不支持该操作异常


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


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

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

14、EmptyStackException 空栈异常