9 try...catch语句
一个try-catch语句应该具有如下格式:
以下为引用的内容:
- try {
- statements;
- } catch (ExceptionClass e) {
- statements;
- }
一个try-catch语句后面也可能跟着一个finally语句,不论try代码块是否顺利执行完,它都会被执行。
以下为引用的内容:
- try {
- statements;
- } catch (ExceptionClass e) {
- statements;
- } finally {
- statements;
- }
希望通过本文的介绍,能够给你带来帮助。