Java 32- Catch exceptions
في هذا الفيديو من حافا JAVA , سنتحدث عن كيفية اقتناص الاستثناءات, و سنشرح الفرق بين الفئة Exception استثناء والفئة Error خطأ.
Catch exceptions
public static void main(String[] args){
int[] nombre= new int[]{3,7,0,4,0,5,80,0,9};
for (int i = 0; i < nombre.length; i++) {
// Trying to divide the value of i by the value of nombre[i] and print the result.
System.out.println(i+"/"+nombre[i]+" = "+i/nombre[i]);
System.out.println("pour i = "+i+" On a l exception suivant : "+e.getMessage());
System.out.println("\n avec transtypage on a \n");
for (int i = 0; i < nombre.length; i++) {
// Trying to divide the value of i by the value of nombre[i] and print the result.
System.out.println(i+"/"+nombre[i]+" = "+(float)i/nombre[i]);
pour i = 2 On a l exception suivant : / by zero
pour i = 4 On a l exception suivant : / by zero
pour i = 7 On a l exception suivant : / by zero
0 تعليقات