Java 异常处理
作者:
西贝巴巴 | 来源:发表于
2021-03-13 12:49 被阅读0次package com.company;
/*
异常处理方法
使用 System 类的 System.err.println() 来展示异常的处理方法
Finally的用法
Java 中的 Finally 关键一般与try一起使用,在程序进入try块之后,无论程序是因为异常而中止或其它方式返回终止的,finally块的内容一定会被执行 。
*/
public class ErrorTest {
public static void main(String[] args){
try {
throw new Exception("My Exception");
}catch (Exception e){
System.err.println("Caught Exception");
System.err.println("getMessage():"+e.getMessage());
//获取异常的堆栈信息
e.printStackTrace();
}
finally {
System.out.println("无论程序怎么终止,我都执行 finally");
}
}
}
本文标题:Java 异常处理
本文链接:https://www.haomeiwen.com/subject/rikcqltx.html
网友评论