Home  >  Article  >  Java  >  Java Example - Using catch to handle exceptions

Java Example - Using catch to handle exceptions

黄舟
黄舟Original
2017-02-04 10:13:101244browse

The following example demonstrates the method of using catch to handle exceptions:

/*
 author by w3cschool.cc
 Main.java
 */

public class Main{
   public static void main (String args[]) {
      int array[]={20,20,40};
      int num1=15,num2=10;
      int result=10;
      try{
         result = num1/num2;
         System.out.println("结果为 " +result);
         for(int i =5;i >=0; i--) {
            System.out.println ("数组的元素值为 " +array[i]);
         }
      }
      catch (Exception e) {
         System.out.println("触发异常 : "+e);
      }
   }
}

The output result of running the above code is:

结果为 1
触发异常 : java.lang.ArrayIndexOutOfBoundsException: 5


The above is Java Example - Using catch to handle exceptions. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn