Java Try-Catch 對於效能的影響

來源:互聯網
上載者:User

標籤:

直觀上我感覺 try catch 對於程式有效能上的影響,但是以下的實驗可以說明部分情況下try - catch 只是邏輯上的影響,與效能無太大的拖累

  public static void main(String[] args) throws Exception {        int n = 10000;        for (int j = 0; j < 20; j++) {            System.out.println("case" + (j + 1));            long start = System.currentTimeMillis();            for (int i = 0; i < n; i++) {                try {                    testProcess();                } catch (Exception e) {                    // TODO: handle exception                }            }            System.out.println(System.currentTimeMillis() - start);            start = System.currentTimeMillis();            for (int i = 0; i < n; i++) {                testProcess();            }            System.out.println(System.currentTimeMillis() - start);        }    }    public static void testProcess() {        int c = 1;        for (int i = 1; i < 10000; i++) {            c *= i;            if (c % 2 == 0) {                c += i;            }            if (i == 0) {                throw new RuntimeException();            }        }    }

 

結果:

case1305297case2285307case3312312case4306310case5294296case6286302case7275291case8276283case9287291case10256271case11256283case12256280case13263287case14262281case15254279case16254281case17250275case18262295case19270282case20254288

 

Java Try-Catch 對於效能的影響

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.