Java 常见异常

Try:尝试 Catch:捕捉 Finally:最后

Throw:抛出

Throws: (投掷)表示强制异常处理

Throwable:(可抛出的)表示所有异常类的祖先类

在这里插入代码片

ArrayIndexOutOfBoundsException:数组下标越界异常

ArithmeticException:算术异常

NullPointerException:空引用(指针)异常

ClassNotFoundException:类没有发现异常

NumberFormatException:数字格式异常(字符串不能转化为数字)

猜你喜欢

转载自blog.csdn.net/duanbaoke/article/details/85174550