在Java中,异常处理是通过使用try-catch语句块来捕获和处理异常的。以下是一个简单的示例,说明如何捕获异常:
public class ExceptionHandlingExample {
public static void main(String[] args) {
int[] numbers = {1, 2, 3};
try {
// 尝试执行可能抛出异常的代码
int result = divide(10, 0);
System.out.println("Result: " + result);
} catch (ArithmeticException e) {
// 捕获特定类型的异常
System.out.println("An error occurred: " + e.getMessage());
} catch (Exception e) {
// 捕获其他类型的异常
System.out.println("An unexpected error occurred: " + e.getMessage());
} finally {
// 无论是否发生异常,都会执行的代码块
System.out.println("This block will always be executed.");
}
}
public static int divide(int a, int b) throws ArithmeticException {
return a / b;
}
}
在这个示例中,我们尝试执行一个可能抛出ArithmeticException
的除法操作。如果操作成功,我们将打印结果。如果发生异常,我们将根据异常类型(在这种情况下是ArithmeticException
)执行相应的catch块。最后,无论是否发生异常,finally块都会执行。