在Java中,charAt()
是一個字符串方法,用于返回指定索引處的字符。以下是如何使用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); // 輸出: l
// 使用charAt()獲取索引為-1的字符(會拋出StringIndexOutOfBoundsException異常)
char lastChar = str.charAt(-1);
}
}
請注意,如果索引超出字符串的范圍,charAt()
方法將拋出StringIndexOutOfBoundsException
異常。因此,在使用此方法時,請確保索引在字符串的有效范圍內。