Module  java.base
软件包  java.lang

Class ArrayIndexOutOfBoundsException

  • All Implemented Interfaces:
    Serializable


    public class ArrayIndexOutOfBoundsException
    extends IndexOutOfBoundsException
    抛出以表示使用非法索引访问数组。 索引为负数或大于或等于数组的大小。
    从以下版本开始:
    1.0
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • ArrayIndexOutOfBoundsException

        public ArrayIndexOutOfBoundsException​()
        构造一个 ArrayIndexOutOfBoundsException ,没有详细信息。
      • ArrayIndexOutOfBoundsException

        public ArrayIndexOutOfBoundsException​(String s)
        构造具有指定的详细消息的 ArrayIndexOutOfBoundsException类。
        参数
        s - 详细信息。
      • ArrayIndexOutOfBoundsException

        public ArrayIndexOutOfBoundsException​(int index)
        构造一个新的ArrayIndexOutOfBoundsException类,其中包含指示非法索引的参数。

        该索引包含在此异常的详细消息中。 详细信息的确切显示格式未指定。

        参数
        index - 非法索引。