📄 inheritingexceptions.java
字号:
package chapter12;
/*
* 创建简单的自定义异常。
*/
class SimpleException extends Exception{}
public class InheritingExceptions {
public void f() throws SimpleException{
System.out.println("Throw SimpleException from f()");
throw new SimpleException();
/*
* 抛出的是一个SimpleException的实例化对象
* 这个对象正好被catch,然后又执行
* System.out.print("Caught it!");
*/
}
public static void main(String args[]){
InheritingExceptions sed=new InheritingExceptions();
try{
sed.f();
}catch(SimpleException e){
System.out.print("Caught it!");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -