charAt()
是 Java 中的一个字符串方法,它的功能是返回指定索引处的字符。这个方法需要一个字符串(String
)作为输入参数,并返回一个 char
类型的结果。索引范围是从 0 到字符串的长度减 1。
示例:
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); // 输出 "The character at index 4 is: o"
}
}
在这个例子中,我们使用 charAt()
方法从字符串 “Hello, World!” 中获取索引为 4 的字符(即字母 “o”),并将其存储在变量 ch
中。然后我们将结果打印到控制台。