模块  java.base
软件包  java.lang

Class StringIndexOutOfBoundsException

  • 实现的所有接口
    Serializable

    public class StringIndexOutOfBoundsException
    extends IndexOutOfBoundsException
    String方法抛出,以指示索引是负数还是大于字符串的大小。 对于某些方法(如charAt方法),当索引等于字符串的大小时,也会抛出此异常。
    从以下版本开始:
    1.0
    另请参见:
    String.charAt(int)Serialized Form
    • 构造方法详细信息

      • StringIndexOutOfBoundsException

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

        public StringIndexOutOfBoundsException​(String s)
        使用指定的详细消息构造 StringIndexOutOfBoundsException
        参数
        s - 详细信息。
      • StringIndexOutOfBoundsException

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

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

        参数
        index - 非法索引。