charAt()
是 Java 中的一个字符串方法,其主要作用是返回指定索引位置的字符。这个方法接收一个整数参数,表示要获取的字符在字符串中的位置(从 0 开始计数)。如果索引超出字符串的范围,将抛出 StringIndexOutOfBoundsException
异常。
示例:
public class Main {
public static void main(String[] args) {
String str = "Hello, World!";
char ch = str.charAt(4); // 获取索引为 4 的字符,即 'o'
System.out.println("Character at index 4: " + ch);
}
}
输出:
Character at index 4: o