位置:首页 > 软件操作教程 > 编程开发 > Java > 问题详情

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 语句最后执行");

}

}

}`IXLYBQO6LTZQZPJ[WUQ6)B.png


继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部