Java finally关键字
提问人:刘旭39发布时间:2020-11-30
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 语句最后执行");
}
}
}
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>