全パッケージ  クラス階層  このパッケージ  前項目  次項目  インデックス
  クラス java.lang.ArrayIndexOutOfBoundsException
java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.lang.IndexOutOfBoundsException
                                   |
                                   +----java.lang.ArrayIndexOutOfBoundsException
  -  public class ArrayIndexOutOfBoundsException
  -  extends IndexOutOfBoundsException
間違った添字を使って配列がアクセスされたことを示すためにスローされます。つまり、添字が負または、配列のサイズ以上の場合です。
   
  -   ArrayIndexOutOfBoundsException() ArrayIndexOutOfBoundsException()
-   詳細メッセージを付けずに ArrayIndexOutOfBoundsExceptionを構築する。
-   ArrayIndexOutOfBoundsException(int) ArrayIndexOutOfBoundsException(int)
-   間違った添字を示す引数を付けて、新規の ArrayIndexOutOfBoundsExceptionクラスを構築する。
-   ArrayIndexOutOfBoundsException(String) ArrayIndexOutOfBoundsException(String)
-   指定の詳細メッセージを付けて ArrayIndexOutOfBoundsExceptionクラスを構築する。
   
 ArrayIndexOutOfBoundsException
ArrayIndexOutOfBoundsException
  public ArrayIndexOutOfBoundsException()
  -  詳細メッセージを付けずに ArrayIndexOutOfBoundsExceptionを構築します。
 
 ArrayIndexOutOfBoundsException
ArrayIndexOutOfBoundsException
  public ArrayIndexOutOfBoundsException(int index)
  -  間違った添字を示す引数を付けて、新規の ArrayIndexOutOfBoundsExceptionクラスを構築します。
   
- 
    -  パラメータ:
    
-  index - 間違った添字
  
 
 ArrayIndexOutOfBoundsException
ArrayIndexOutOfBoundsException
  public ArrayIndexOutOfBoundsException(String s)
  -  指定の詳細メッセージを付けて ArrayIndexOutOfBoundsExceptionクラスを構築します。
   
- 
    -  パラメータ:
    
-  s - 詳細メッセージ
  
 
全パッケージ  クラス階層  このパッケージ  前項目  次項目  インデックス