- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IndexOutOfBoundsException
-
- java.lang.StringIndexOutOfBoundsException
-
- All Implemented Interfaces:
-
Serializable
public class StringIndexOutOfBoundsException extends IndexOutOfBoundsException
抛出String
方法来指示索引为负或大于字符串的大小。 对于某些方法,如charAt
方法,当索引等于字符串的大小时,也会抛出此异常。- 从以下版本开始:
- 1.0
- 另请参见:
-
String.charAt(int)
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 StringIndexOutOfBoundsException()
构造一个没有详细消息的StringIndexOutOfBoundsException
。StringIndexOutOfBoundsException(int index)
构造一个新的StringIndexOutOfBoundsException
类,其中包含指示非法索引的参数。StringIndexOutOfBoundsException(String s)
构造具有指定详细消息的StringIndexOutOfBoundsException
。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
StringIndexOutOfBoundsException
public StringIndexOutOfBoundsException()
构造一个StringIndexOutOfBoundsException
,没有详细信息。
-
StringIndexOutOfBoundsException
public StringIndexOutOfBoundsException(String s)
构造具有指定详细消息的StringIndexOutOfBoundsException
。- 参数
-
s
- 详细信息。
-
StringIndexOutOfBoundsException
public StringIndexOutOfBoundsException(int index)
构造一个新的StringIndexOutOfBoundsException
类,其中包含非法索引的参数。该索引包含在此异常的详细消息中。 详细信息的确切显示格式未指定。
- 参数
-
index
- 非法索引。
-
-