try catch 示例
时间: 2023-06-22 08:40:02 浏览: 79
java try…catch捕获异常的实例
5星 · 资源好评率100%
好的,以下是一个 try-catch 的示例代码:
```java
try {
// 可能会抛出异常的代码
int result = 10 / 0; // 除数为0,会抛出 ArithmeticException 异常
} catch (ArithmeticException e) { // 捕获 ArithmeticException 异常
// 异常处理代码
System.out.println("发生了算术异常:" + e.getMessage());
} finally {
// 无论是否发生异常,都会执行的代码
System.out.println("执行了 finally 块");
}
System.out.println("程序继续执行");
```
在上面的代码中,我们使用 try-catch 来捕获可能会抛出的 ArithmeticException 异常。如果这个异常真的被抛出了,我们就会在 catch 块中处理它。如果没有抛出异常,程序就会直接跳过 catch 块,继续执行 finally 块和后面的代码。无论是否发生异常,finally 块中的代码都会被执行。
阅读全文