charAt()
是 Java 中的一個字符串方法,其主要作用是返回指定索引位置的字符。這個方法接收一個整數參數,表示要獲取的字符在字符串中的位置(從 0 開始計數)。如果索引超出字符串的范圍,將拋出 StringIndexOutOfBoundsException
異常。
示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
char ch = str.charAt(4); // 獲取索引為 4 的字符,即 'o'
System.out.println("Character at index 4: " + ch);
}
}
輸出:
Character at index 4: o