Java : StringIndexOutOfBoundsException - API使用例
StringIndexOutOfBoundsException (Java SE 21 & JDK 21) の使用例まとめです。
だいたいのメソッドを網羅済みです。
API仕様書のおともにどうぞ。
概要
StringIndexOutOfBoundsException は、文字列 のインデックスが 範囲外 のときに発生する非チェック例外です。
関連記事:例外 vs. 戻り値でエラーチェック
final var str = "abc";
System.out.println(str.charAt(0)); // a
System.out.println(str.charAt(1)); // b
System.out.println(str.charAt(2)); // c
try {
final var ret = str.charAt(3);
} catch (StringIndexOutOfBoundsException e) {
System.out.println(e);
}
// 結果
// ↓
//java.lang.StringIndexOutOfBoundsException: Index 3 out of bounds for length 3
コンストラクタ
StringIndexOutOfBoundsException ()
final var e = new StringIndexOutOfBoundsException();
System.out.println(e); // java.lang.StringIndexOutOfBoundsException
StringIndexOutOfBoundsException (int index)
final var e = new StringIndexOutOfBoundsException(123);
// java.lang.StringIndexOutOfBoundsException: String index out of range: 123
System.out.println(e);
StringIndexOutOfBoundsException (String s)
final var e = new StringIndexOutOfBoundsException("abcd");
System.out.println(e); // java.lang.StringIndexOutOfBoundsException: abcd
Throwableで宣言されたメソッド
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
「Java API 使用例 : Throwable」をご参照ください。
関連記事
- API 使用例
- Error (エラー)
- Exception (チェック例外)
- RuntimeException (非チェック例外)
- ArithmeticException (算術例外)
- ArrayIndexOutOfBoundsException
- ArrayStoreException
- CancellationException
- ClassCastException (キャスト例外)
- ConcurrentModificationException (並列処理例外)
- DateTimeException (日付・時刻の例外)
- DateTimeParseException (日付・時刻の解析例外)
- IllegalArgumentException
- IllegalStateException
- IndexOutOfBoundsException
- NoSuchElementException
- NullPointerException
- PatternSyntaxException
- UnsupportedOperationException
- Throwable