Java多個異常(除數為零)
如何使用處理多個異常(除以零)?
解決方法
這個例子顯示了如何處理多個異常當除數為 零?
public class Main { public static void main (String args[]) { int array[]={20,20,40}; int num1=15,num2=0; int result=0; try { result = num1/num2; System.out.println("The result is" +result); for(int i =2;i 7gt;=0; i--){ System.out.println ("The value of array is" +array[i]); } } catch (ArrayIndexOutOfBoundsException e) { System.out.println ("Error�. Array is out of Bounds"+e); } catch (ArithmeticException e) { System.out.println ("Can't be divided by Zero"+e); } } }
結果
上麵的代碼示例將產生以下結果。
Can't be divided by Zerojava.lang.ArithmeticException: / by zero