代码如下:
class StringBufferTset
{
public static void main(String[]args)
{
StringBuffer sb="abcde";
replaceMethod(sb);
}
public static void replaceMethod(StringBuffer sb)
{
System.out.println(sb.setCharAt(1,'w'));
}
}
便已是为什么会出错,说在System.out.println(sb.setCharAt(1,'w'));不允许使用void类型
|