描述
此方法返回位于字符串的指定索引处的字符。该字符串的索引从零开始。
语法
此方法定义的语法如下:
public char charAt(int index)
参数
这里是参数的细节:
index -- 返回字符的索引。
返回值
该方法的返回指定索引处char值。
例子:
public class Test { public static void main(String args[]) {
String s = "Strings are immutable";
char result = s.charAt();
System.out.println(result);
}
}
这将产生以下结果:
a