?? inheriting.java
字號:
//Inheriting your own exceptions
class MyException2 extends Exception
{ public MyException2( ) { }
public MyException2(String msg)
{ super(msg); }
public MyException2(String msg,int x)
{ super(msg);
i=x;
}
public int val( ) { return i; }
private int i;
}
public class Inheriting
{ public static void f( ) throws MyException2
{ System.out.println("Throwing MyException2 from f( )");
throw new MyException2( );
}
public static void g( ) throws MyException2
{ System.out.println("Throwing MyException2 from g( )");
throw new MyException2("起源于 g( ) 的異常",47);
}
public static void main(String args[ ])
{ try
{ f( ); }
catch(MyException2 e)
{ e.printStackTrace( ); }
try
{ g( ); }
catch(MyException2 e)
{ e.printStackTrace( );
System.out.println("i = "+e.val( ));
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -