Java charAt()方法:
charAt() 方法用于返回指定索引处的字符。索引范围为从 0 到 length() - 1。
public class Test { public static void main(String args[]) { String s = "www.runoob.com"; char result = s.charAt(6); System.out.println(result); } }
此处显示为 n;
posted on 2023-09-25 16:00 messing 阅读(10) 评论(0) 编辑 收藏 举报