摘要: 1 public class Demo13{ 2 3 /* 4 5 如果我们在try或者catch语句块中抛出异常,finally语句是否会执行? 6 7 */ 8 public static void main(String[] args) { 9 try{ 10 Integer.parseInt 阅读全文
posted @ 2020-12-28 14:24 dog_IT 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1 public class Demo13{ 2 3 4 /*Java规定: 5 1.必须捕获的异常,包括Exception及其子类,但不包括RuntimeException及其子类,这种类型的异常称为Checked Exception。 6 7 2.不需要捕获的异常,包括Error及其子类,Run 阅读全文
posted @ 2020-12-28 14:09 dog_IT 阅读(64) 评论(0) 推荐(0) 编辑