代码
提交代码
public class StringMethod2 { public static void main(String[] args) { String str = "I love Java"; char c = str.charAt(7); System.out.println("索引位置为7的字符为:" + c); } }
运行结果