- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IndexOutOfBoundsException
-
- java.lang.ArrayIndexOutOfBoundsException
-
- 实现的所有接口
-
Serializable
public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException
抛出以指示已使用非法索引访问数组。 索引为负数或大于或等于数组的大小。- 从以下版本开始:
- 1.0
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 ArrayIndexOutOfBoundsException()
构造一个没有详细消息的ArrayIndexOutOfBoundsException
。ArrayIndexOutOfBoundsException(int index)
构造一个新的ArrayIndexOutOfBoundsException
类,其参数指示非法索引。ArrayIndexOutOfBoundsException(String s)
构造具有指定详细消息的ArrayIndexOutOfBoundsException
类。
-
方法摘要
-
-
-
构造方法详细信息
-
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException()
构造一个没有详细消息的ArrayIndexOutOfBoundsException
。
-
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException(String s)
使用指定的详细消息构造一个ArrayIndexOutOfBoundsException
类。- 参数
-
s
- 详细信息。
-
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException(int index)
构造一个新的ArrayIndexOutOfBoundsException
类,其参数指示非法索引。索引包含在此异常的详细消息中。 未指定详细消息的确切表示格式。
- 参数
-
index
- 非法索引。
-
-