程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java停止error捕捉和處置示例(java異常捕捉)

java停止error捕捉和處置示例(java異常捕捉)

編輯:關於JAVA

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)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved