标签:
此方法返回位于字符串的指定索引处的字符。该字符串的索引从零开始。
此方法定义的语法如下:
public char charAt(int index)
这里是参数的细节:
index -- 返回字符的索引。
该方法的返回指定索引处char值。
1 public class Test { 2 3 public static void main(String args[]) { 4 String s = "Strings are immutable"; 5 char result = s.charAt(8); 6 System.out.println(result); 7 } 8 }
这将产生以下结果:
1 a
标签:
原文地址:http://www.cnblogs.com/yangyi9343/p/5425510.html