日期: 2022 年 3 月 15 日

1 篇文章

thumbnail
Java异常02-捕获异常与自定义异常
捕获异常 try catch关键字 try:监控类型catch:想要捕获的异常,可以捕获异常finally:可以处理善后工作,(可以不要finally)使用 try catch关键字可以在出现异常时实现程序不终止,继续跑完程序。我们只需要在try catch中处理这些异常就可以了。 package com.xiheya.exception;​/**…