Java程序常见的异常包括NullPointerException、ArrayIndexOutOfBoundsException、NumberFormatException、FileNotFoundException、IOException等。
处理方法包括:
try {
// 可能会抛出异常的代码
} catch (Exception e) {
// 捕获异常并处理
e.printStackTrace(); // 打印异常信息
}
public void method() throws IOException {
// 可能会抛出异常的代码
}
try {
// 可能会抛出异常的代码
} catch (Exception e) {
// 捕获异常并处理
e.printStackTrace(); // 打印异常信息
} finally {
// 无论是否发生异常,都会执行的代码
}
public class CustomException extends Exception {
public CustomException(String message) {
super(message);
}
}
try {
if (condition) {
throw new CustomException("发生了自定义异常");
}
} catch (CustomException e) {
// 捕获自定义异常并处理
e.printStackTrace(); // 打印异常信息
}