更新時間:2023-12-15 來源:黑馬程序員 瀏覽量:
String字符串在獲取某個字符時會用到字符的索引,當(dāng)訪問字符串中的字符時,如果字符的索引不存在,則會發(fā)生StringIndexOutOfBoundsException(字符串角標(biāo)越界異常)。
當(dāng)我們嘗試訪問字符串中不存在的字符位置時,就會觸發(fā)字符串角標(biāo)的越界異常。在Java中,字符串的角標(biāo)是從0開始的,如果我們嘗試訪問超出字符串長度范圍的角標(biāo),就會引發(fā)異常。接下來筆者通過一個簡單的案例來演示字符串角標(biāo)越界異常:
public class StringIndexOutOfBoundsExample { public static void main(String[] args) { String str = "Hello, World!"; try { // 嘗試訪問超出字符串長度范圍的角標(biāo) char character = str.charAt(20); // 這里的字符串長度是13,但我們嘗試訪問第20個字符 System.out.println("Character at index 20: " + character); } catch (StringIndexOutOfBoundsException e) { System.out.println("String index is out of bounds!"); } } }
在這個例子中,我們創(chuàng)建了一個包含"Hello, World!"的字符串。然后,我們嘗試訪問字符串角標(biāo)為20的字符,但是實際字符串的長度只有13個字符,因此訪問第20個字符超出了范圍,導(dǎo)致了StringIndexOutOfBoundsException的異常被拋出。在異常處理中,會打印出"String index is out of bounds!"的消息。
本文版權(quán)歸黑馬程序員Java培訓(xùn)學(xué)院所有,歡迎轉(zhuǎn)載,轉(zhuǎn)載請注明作者出處。謝謝!
作者:黑馬程序員Java培訓(xùn)學(xué)院
首發(fā):https://java.itheima.com