java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IndexOutOfBoundsException
java.lang.ArrayIndexOutOfBoundsException
- 所有已实现的接口:
-
Serializable
抛出以指示使用非法索引访问了数组。索引要么为负,要么大于或等于数组的大小。
- 自:
- 1.0
- 参见:
-
Constructor Summary
ConstructorDescription构造一个没有详细消息的ArrayIndexOutOfBoundsException
。ArrayIndexOutOfBoundsException
(int index) 构造一个带有指示非法索引的参数的新ArrayIndexOutOfBoundsException
类。构造一个带有指定详细消息的ArrayIndexOutOfBoundsException
类。 -
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException()构造一个没有详细消息的ArrayIndexOutOfBoundsException
。 -
ArrayIndexOutOfBoundsException
构造一个带有指定详细消息的ArrayIndexOutOfBoundsException
类。- 参数:
-
s
- 详细消息。
-
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException(int index) 构造一个带有指示非法索引的参数的新ArrayIndexOutOfBoundsException
类。该异常的详细消息中包含索引。详细消息的确切呈现格式未指定。
- 参数:
-
index
- 非法索引。
-