charAt()
是 Java 中 String
類的一個方法,用于獲取字符串中指定索引位置的字符
String
對象。例如:String myString = "Hello, World!";
charAt()
方法并傳入要獲取的字符的索引。請注意,索引從 0 開始,即第一個字符的索引為 0,第二個字符的索引為 1,依此類推。例如,要獲取上述字符串中的第一個字符(‘H’),可以這樣做:char firstChar = myString.charAt(0);
firstChar
包含了從字符串中獲取的字符。你可以根據需要使用它。下面是一個完整的示例代碼:
public class Main {
public static void main(String[] args) {
String myString = "Hello, World!";
// 獲取第一個字符
char firstChar = myString.charAt(0);
System.out.println("First character: " + firstChar);
// 獲取最后一個字符
char lastChar = myString.charAt(myString.length() - 1);
System.out.println("Last character: " + lastChar);
}
}
輸出:
First character: H
Last character: !
請確保傳遞給 charAt()
方法的索引在字符串的有效范圍內,即從 0 到 string.length() - 1
。如果傳遞無效的索引,將會拋出 IndexOutOfBoundsException
。