finally关键字
一般在try catch代码块后还会紧跟着finally代码块。通常情况下,无论程序是否有异常,finally 代码块都会正常运行。
//try catch示例,多条catch捕获异常
public class Demo {
public static void main(String[] args) throws Exception {
try {
Class.forName("className");
} catch (Exception e) {
System.out.println("捕获异常:" + e.getClass().getName());
System.out.println("异常内容为:" + e.getMessage());
} finally {
System.out.println("finally 语句最后执行");
}
}
}
已有 22658 名学员学习以下课程通过考试
最需教育客户端 软件问题一手掌握
去 App Store 免费下载 iOS 客户端
点击加载更多评论>>