标签:stat rac hand result 优秀 out packages code 基础
- ????JDK :OpenJDK-11
- ?????OS :CentOS 7.6.1810
- ?????IDE :Eclipse 2019?03
- typesetting :Markdown
?
package per.jizuiku.base;
/**
* @author 给最苦
* @date 2019/06/29
* @blog www.cnblogs.com/jizuiku
*/
class Demo {
/**
* @param args
*/
public static void main(String[] args) {
try {
throw new ArithmeticException();
} catch (Exception e) {
// TODO: handle exception
System.out.println("捕获异常: " + e.toString());
}
}
}
?
捕获异常: java.lang.ArithmeticException
?
/**
* Constructs an {@code ArithmeticException} with no detail
* message.
*/
public ArithmeticException() {
super();
}
?
?
感谢帮助过 给最苦 的人们。
Java、Groovy和Scala等基于JVM的语言,优秀,值得学习。
规范的命名和代码格式等,有助于沟通和理解。
JVM的配置、监控与优化,比较实用,值得学习。
Java基础 throw 抛出异常后,用try...catch捕获
标签:stat rac hand result 优秀 out packages code 基础
原文地址:https://www.cnblogs.com/jizuiku/p/11107756.html