Most visited

Recently visited

Added in API level 1

StringIndexOutOfBoundsException

public class StringIndexOutOfBoundsException
extends IndexOutOfBoundsException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ java.lang.IndexOutOfBoundsException
           ↳ java.lang.StringIndexOutOfBoundsException


通过String抛出方法来指示索引是否定的或大于字符串的大小。 对于某些方法(如charAt方法),当索引等于字符串的大小时,也会引发此异常。

也可以看看:

Summary

Public constructors

StringIndexOutOfBoundsException()

构造一个没有详细信息的 StringIndexOutOfBoundsException

StringIndexOutOfBoundsException(String s)

用指定的详细信息构造一个 StringIndexOutOfBoundsException

StringIndexOutOfBoundsException(int index)

用一个指示非法索引的参数构造一个新的 StringIndexOutOfBoundsException类。

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException ()

构造一个没有详细信息的 StringIndexOutOfBoundsException

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException (String s)

用指定的详细信息构造一个 StringIndexOutOfBoundsException

Parameters
s String: the detail message.

StringIndexOutOfBoundsException

Added in API level 1
StringIndexOutOfBoundsException (int index)

使用指示非法索引的参数构造一个新的 StringIndexOutOfBoundsException类。

Parameters
index int: the illegal index.

Hooray!