📄 exceptiondemo.java
字号:
//ExceptionDemo.java
class MyException extends Exception {
private int detail;
MyException(int n){
detail=n;
}
public String toString ( ) {
return "MyException["+detail+"]";
}
}
class ExceptionDemo {
static void compute (int n) throws MyException {//throws的用法
System.out.println("Called compute("+n+")");
if(n>10) throw new MyException(n); //throw的用法
System.out.println("Normal exit.");
}
public static void main(String args[ ]){
try {
compute(1);
compute(11);
}
catch(MyException e){
System.out.println("Exception caught "+e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -