Java算術異常是一種未經檢查的錯誤或程式碼異常結果,當程式碼在執行時發生錯誤的算術或數學運算時拋出。運行時問題,也稱為異常,是指當分母為整數 0 時,JVM 無法計算結果,從而終止程式的執行,並引發異常。引發異常的點程序終止,但執行先前的程式碼,並顯示結果。
java算術異常的基底類別是lang.ArithmeticException,它屬於java.lang.RuntimeException。
廣告 該類別中的熱門課程 JAVA 掌握 - 專業化 | 78 課程系列 | 15 次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
基類ArithmeticException的結構:
1。 ArithmeticException(): 定義一個沒有傳遞參數或沒有任何詳細訊息的算術異常。
2。 ArithmeticException(String s): 定義一個傳遞一個參數的 ArithmeticException。
s: s 為詳細訊息
以下是兩種可能導致 Java ArithmeticException 的情況:
當我們嘗試將數字除以零時,Java 中會拋出算術異常。下面是java程式碼來說明操作:
代碼:
package com.java.exception; public class ArithmeticException { void division(int a,int b) { int c=a/b; System.out.println("Division has been successfully done"); System.out.println("Value after division: "+c); } public static void main(String[] args) { ArithmeticException ex=new ArithmeticException(); ex.division(10,0); } }
輸出:
由於我們將 10 除以 0,其中 0 是整數且未定義,因此會拋出上述算術異常。
代碼:
//package com.java.exception; public class ArithmeticException { void division(int a,int b) { int c=a/b; System.out.println("Division of a number is successful"); System.out.println("Output of division: "+c); } public static void main(String[] args) { ArithmeticException ex=new ArithmeticException(); ex.division(10,5); } }
輸出:
Java 有一個 BigDecimal 類,它表示十進制數,最高可達大量精度數字。此類 java 還具有一些基本資料類型中不可用的功能集,例如整數、雙精度數和浮點數。這些功能提供對小數的四捨五入
以下是示範程式碼:
代碼:
//package com.java.exception; import java.math.BigDecimal; public class ArithmeticException { public static void main(String[] args) { BigDecimal a=new BigDecimal(1); BigDecimal b=new BigDecimal(6); a=a.divide(b); System.out.println(a.toString()); } }
輸出:
在上面寫的java程式碼中,由於大十進位類別不知道如何處理除法輸出,因此它在輸出控制台中拋出或顯示算術異常。
它拋出一個異常,並帶有詳細訊息「非終止十進制擴展,沒有精確的表示。」
上述大十進制類別的一個可能的出路是從一個大十進制數中陳述我們需要的小數位數,然後將該值限制為一定的小數位數。例如,c 應透過將數字四捨五入到第 7 位小數精度值來限制為小數點後 7 位。
範例#2代碼:
//package co.java.exception; import java.math.BigDecimal; public class ArithmeticException { public static void main(String[] args) { BigDecimal a=new BigDecimal(1); BigDecimal b=new BigDecimal(6); a=a.divide(b,7,BigDecimal.ROUND_DOWN);// limit of decimal place System.out.println(a.toString()); } }
輸出:
輸出控制台將結果顯示為具有第 7
位小數點值的數字,這表示舍入效果很好。
如何避免或處理Java ArithmeticException?異常是透過使用try和catch的組合來處理的。 try/catch 區塊被放置在可能產生異常的程式碼中。在 try/catch 區塊內編寫的程式碼稱為受保護程式碼。
文法:
try { set of statements//protected code } catch (exceptionname except) { // Catch set of statements---can contain single catch or multiple. }
Code:
public class ExceptionHandled { public static void main(String args[]) { int x =100, y = 0; int z; System.out.println("Hello world"); try { z = x/y; System.out.println(z); } catch(ArithmeticException except) { System.out.println("Avoid dividing by integer 0" + except ); } System.out.println("Hello class"); System.out.println("Hello there"); } }
Output:
Hello class and Hello, there are also printed on the output console apart from Hello world. This is the outcome of the exception handling mechanism.
Explanation:
This article has learned about java arithmetic exception and how to handle the exception under try and catch block. An arithmetic exception occurs most of the time because of the division of a number by integer 0. In this article, I have used a single catch for a single try, but we can also use multiple catch for a single try.
以上是Java 算術異常的詳細內容。更多資訊請關注PHP中文網其他相關文章!