Module java.base
Package java.lang

Class ArrayIndexOutOfBoundsException

所有已实现的接口:
Serializable

public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException
抛出以指示使用非法索引访问了数组。索引要么为负,要么大于或等于数组的大小。
自:
1.0
参见:
  • Constructor Details

    • ArrayIndexOutOfBoundsException

      public ArrayIndexOutOfBoundsException()
      构造一个没有详细消息的 ArrayIndexOutOfBoundsException
    • ArrayIndexOutOfBoundsException

      public ArrayIndexOutOfBoundsException(String s)
      构造一个带有指定详细消息的 ArrayIndexOutOfBoundsException 类。
      参数:
      s - 详细消息。
    • ArrayIndexOutOfBoundsException

      public ArrayIndexOutOfBoundsException(int index)
      构造一个带有指示非法索引的参数的新 ArrayIndexOutOfBoundsException 类。

      该异常的详细消息中包含索引。详细消息的确切呈现格式未指定。

      参数:
      index - 非法索引。