Module java.base
Package java.lang

Class StringIndexOutOfBoundsException

所有已实现的接口:
Serializable

public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException
String 方法抛出的异常,表示索引为负数或大于字符串大小。对于一些方法,比如 charAt 方法,当索引等于字符串大小时也会抛出此异常。
自版本:
1.0
参见:
  • Constructor Details

    • StringIndexOutOfBoundsException

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

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

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

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

      参数:
      index - 非法索引。