exceptiondemo.java
来自「半年的java基础联系源码!现在看了破!对于初学java的朋友能帮上忙就用吧」· Java 代码 · 共 57 行
JAVA
57 行
class MyException extends Exception{
private int detail;
MyException( int a ){
detail = a;
}
public String toString( ){
return "MyException "+detail;
}
}
public class ExceptionDemo{
static void compute( int a ) throws MyException{
System.out.println("called compute("+a+")");
if( a>10 )
throw new MyException(a);
System.out.println("normal exit");
}
public static void main( String args[] ){
try{
compute( 1 );
compute( 20 );
}catch( MyException e ){
System.out.println("Caught "+e);
}
}
}
运行结果为:
C:\>java ExceptionDemo
called compute(1)
normal exit
called compute(20)
Caught MyException 20
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?