charAt方法是用于獲取字符串中指定索引位置的字符。它的語法如下:
char charAt(int index)
在使用charAt方法時,需要指定要獲取字符的索引位置,索引位置從0開始計數。例如,要獲取字符串中第一個字符的索引位置為0,第二個字符的索引位置為1,依次類推。
下面是一個示例代碼,演示如何使用charAt方法:
public class Main {
public static void main(String[] args) {
String str = "Hello World";
char firstChar = str.charAt(0);
char fifthChar = str.charAt(4);
System.out.println("第一個字符是:" + firstChar);
System.out.println("第五個字符是:" + fifthChar);
}
}
運行以上代碼,輸出結果如下:
第一個字符是:H
第五個字符是:o