Exception继承了Throwable,但是它本身是有异常类的父类。
RuntimeException:运行时异常
Exception->RuntimeException->NullPointException
Exception->RuntimeException->IndexOutOfBoundsException->ArrayIndexOfboundsException
public class Test {
String x;
public static void main(String[] args) {
Test test = new Test();
try {
System.out.println(test.x.length());
} catch (ArrayIndexOutOfBoundsException e) {
test.x = "hello world";
System.out.println(test.x.length());
} catch (NullPointerException e) {
// TODO: handle exception
test.x = "hello world";
System.out.println(test.x.length());
} catch (Exception e) { // 必须放到最后
// TODO: handle exception
e.printStackTrace();
}
System.out.println("end");
}
}
11
end
java contorller调用service 命名规范
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:dgl与pytorch的对应
下一篇:nginx命令全局可用
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
【Java】——命名规范
基于三件事,学习Spring源码、阅读同事之前的代码、读《重构 改善既有代码的设计》意识到命名,是代码能否
java命名规范 正例 类名 后缀 -
JAVA:命名规范
一、命名规范1、项目名全部小写2、包名全部小写3、类名首字母大写,如果类名由多个单词组成
注释模板 使用说明 首字母 -
非Contorller类使用@Service中的方法
组件扫描这种的是指bean,跟service没关系 service只能在Controller类中使用,如果别的类想使用,必须使用下面这种
controller Service spring spring框架 调用方法 -
java 增删改查接口命名规范(service与mapper)
阿
Java spring boot 命名规范