當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java java.lang.ArrayIndexOutOfBoundsExcepiton用法及代碼示例


java.lang.ArrayIndexOutOfBoundsException是運行時異常,僅在程序執行狀態時拋出。 Java編譯器從不檢查編譯時出現此錯誤。

java.lang.ArrayIndexOutOfBoundsException 是 java 中最常見的異常之一。 當程序員嘗試訪問數組中某個元素的值無效的index。 從 JDK 版本 1.0 開始,Java 中引入了此異常。 ArrayIndexOutOfBoundsException 可能由於多種原因而發生,例如當我們嘗試訪問數組中負索引或索引更大的元素的值時 數組的大小-1。

以下是代碼示例顯示的情況這個錯誤能夠發生錯誤並使用以下方法處理和顯示try-catch塊.

案例 1:- 訪問負索引處元素的值

Java


// Java program to show the ArrayIndexOutOfBoundsException 
// while accessing element at negative index 
  
import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            int array[] = new int[] { 4, 1, 2, 6, 7 }; 
            // accessing element at index 2 
            System.out.println("The element at index 2 is "
                               + array[2]); 
            // accessing element at index -1 
            // this will throw the 
            // ArrayIndexOutOfBoundsException 
            System.out.println("The element at index -1 is "
                               + array[-1]); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出
The element at index 2 is 2
java.lang.ArrayIndexOutOfBoundsException: Index -1 out of bounds for length 5

案例2:-訪問大於數組大小 -1 的索引處的元素

Java


// Java program to show the ArrayIndexOutOfBoundsException 
// while accessing element at index greater then size of 
// array -1 
  
import java.io.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            int array[] = new int[] { 4, 1, 2, 6, 7 }; 
            // accessing element at index 4 
            System.out.println("The element at index 4 is "
                               + array[4]); 
            // accessing element at index 6 
            // this will throw the 
            // ArrayIndexOutOfBoundsException 
            System.out.println("The element at index 6 is "
                               + array[6]); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
輸出
The element at index 4 is 7
java.lang.ArrayIndexOutOfBoundsException: Index 6 out of bounds for length 5


相關用法


注:本文由純淨天空篩選整理自lavishgarg26大神的英文原創作品 java.lang.ArrayIndexOutOfBoundsExcepiton in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。