java数组越界异常的捕获

使用Java异常捕获,字符串数组String[] str = {"邓超","李晨","鹿晗","杨颖"}

当取得第五个数组元素时,显示输出"没有第五个数组元素,发生异常"。

  1. public class Test {   
  2.   
  3.     public static void main(String[] args) {   
  4.         // TODO Auto-generated method stub   
  5.         try{   
  6.             String[] str = {"邓超","李晨","鹿晗","杨颖"};   
  7.             str[5]="124";   
  8.         }catch(ArrayIndexOutOfBoundsException e){   
  9.             System.out.println("数组越界");   
  10.         }   
  11.     }   
  12.   
  13. }   

留下评论