/** * 获取字符串中某个位置上的字符 */ public static void testCharAt() { StringBuffer sb = new StringBuffer("This is a StringBuffer!"); // charAt方法返回字符串中某个位置上的字符 System.out.println("sb.charAt(2) = " + sb.charAt(2)); }