java停止error捕捉和處置示例(java異常捕捉)。本站提示廣大學習愛好者:(java停止error捕捉和處置示例(java異常捕捉))文章只能為提供參考,不一定能成為您想要的結果。以下是java停止error捕捉和處置示例(java異常捕捉)正文
上面給個小例子,來驗證一下error的捕捉。
public class TestCatchError extends Error{
private static final long serialVersionUID = -351488225420878020L;
public TestCatchError(){
super();
}
public TestCatchError(String msg){
super(msg);
}
public static void main(String[] args) {
try {
throw new TestCatchError("test catch error");
} catch (Throwable t) {
System.out.println("step in the catch ~");
t.printStackTrace();
}
}
}
運轉成果:
step in the catch ~
TestCatchError: test catch error
at TestCatchError.main(TestCatchError.java:23)