charAt()
是 Java 中的一個字符串方法,它用于返回指定索引處的字符。這個方法需要一個整數參數,表示要查找的字符在字符串中的位置(從 0 開始計數)。
這里有一個簡單的例子來說明 charAt()
的用法:
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);
}
}
在這個例子中,我們創建了一個名為 str
的字符串變量,它的值是 “Hello, World!”。然后我們使用 charAt()
方法獲取索引為 4 的字符,并將其存儲在名為 ch
的字符變量中。最后,我們打印出 ch
的值,即 “o”。