java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException java.lang.IndexOutOfBoundsException java.lang.StringIndexOutOfBoundsException
public class StringIndexOutOfBoundsException
此异常由 String
方法抛出,指示索引或者为负,或者超出字符串的大小。对诸如 charAt 的一些方法,当索引等于字符串的大小时,也会抛出该异常。
String.charAt(int)
,
序列化表格
构造方法摘要 | |
---|---|
StringIndexOutOfBoundsException() 构造不带详细消息的 StringIndexOutOfBoundsException 。 |
|
StringIndexOutOfBoundsException(int index) 构造一个新的 StringIndexOutOfBoundsException 类,该类带有一个指示非法索引的参数。 |
|
StringIndexOutOfBoundsException(String s) 构造带指定详细消息的 StringIndexOutOfBoundsException 。 |
方法摘要 |
---|
从类 java.lang.Throwable 继承的方法 |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
构造方法详细信息 |
---|
public StringIndexOutOfBoundsException()
StringIndexOutOfBoundsException
。
public StringIndexOutOfBoundsException(String s)
StringIndexOutOfBoundsException
。
s
- 详细消息。
public StringIndexOutOfBoundsException(int index)
StringIndexOutOfBoundsException
类,该类带有一个指示非法索引的参数。
index
- 非法索引。