Multiple exception (chia cho số 0) trong Java
Miêu tả vấn đề
Cách xử lý Multiple Exception trong khi chia cho số 0 trong Java?
Giải pháp
Ví dụ sau minh họa cách xử lý Multiple Exception trong khi chia cho số 0 trong 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); } } }
Kết quả
Code trên sẽ cho kết quả sau:
Can't be divided by Zerojava.lang.ArithmeticException: / by zero
Bài học Bài tập Java phổ biến tại hoconline.club:
exception_trong_java.jsp
Bài viết liên quan