编写一个类ExceptionTest.在main方法中使用try,cafch、fnaly,要求. >在try块中,编写被零除的代码。 >在catch块中,捕获被零除所产生的异常,并且打印异常信息 >在finaly块中,打印…条语句。
时间: 2024-03-25 15:35:46 浏览: 110
使用try-catch-finally处理异常
好的,以下是编写的代码:
```
public class ExceptionTest {
public static void main(String[] args) {
try {
int a = 10 / 0;
} catch (ArithmeticException e) {
System.out.println("异常信息:" + e.getMessage());
} finally {
System.out.println("执行finally块中的语句");
}
}
}
```
在上述代码中,我们在try块中编写了一个被零除的操作,这会抛出一个ArithmeticException异常。在catch块中,我们捕获了这个异常,并打印了异常信息。在finally块中,我们打印了一条语句,表示这个块中的语句会在try或catch块中的语句执行完后被执行。
阅读全文