charAt()
是 Java 中的一個字符串方法,它的功能是返回指定索引處的字符。這個方法需要一個字符串(String
)作為輸入參數,并返回一個 char
類型的結果。索引范圍是從 0 到字符串的長度減 1。
示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
char ch = str.charAt(4);
System.out.println("The character at index 4 is: " + ch); // 輸出 "The character at index 4 is: o"
}
}
在這個例子中,我們使用 charAt()
方法從字符串 “Hello, World!” 中獲取索引為 4 的字符(即字母 “o”),并將其存儲在變量 ch
中。然后我們將結果打印到控制臺。