charAt()
是 Java 中的一個字符串方法,用于返回指定索引處的字符。它接受一個整數參數,表示要獲取的字符在字符串中的位置(從 0 開始計數)。以下是如何使用 charAt()
方法的示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
// 使用 charAt() 獲取索引為 0 的字符
char firstChar = str.charAt(0);
System.out.println("第一個字符是: " + firstChar); // 輸出: H
// 使用 charAt() 獲取索引為 4 的字符
char fifthChar = str.charAt(4);
System.out.println("第五個字符是: " + fifthChar); // 輸出: o
// 使用 charAt() 獲取索引為 -1 的字符(會拋出 StringIndexOutOfBoundsException)
char lastChar = str.charAt(-1);
}
}
請注意,嘗試訪問字符串中不存在的索引(例如 -1)將導致 StringIndexOutOfBoundsException
。因此,在使用 charAt()
方法時,請確保提供的索引值在字符串的有效范圍內。