StringBuffer作为形式参数传递

代码来自传智风清扬老师的视频教程 2015年Java基础班视频精华版\day13\code\day13_StringBuffer\src\cn\itcast_08

public class StringBufferDemo {
    public static void main(String[] args) {
        String s1 = "hello";
        String s2 = "world";
        System.out.println(s1 + "---" + s2);// hello---world
        change(s1, s2);
        System.out.println(s1 + "---" + s2);// hello---world

        StringBuffer sb1 = new StringBuffer("hello");
        StringBuffer sb2 = new StringBuffer("world");
        System.out.println(sb1 + "---" + sb2);// hello---world
        change(sb1, sb2);
        System.out.println(sb1 + "---" + sb2);// hello---worldworld

    }

    public static void change(StringBuffer sb1, StringBuffer sb2) {
        sb1 = sb2;
        sb2.append(sb1);
    }

    public static void change(String s1, String s2) {
        s1 = s2;
        s2 = s1 + s2;
    }
}

使用change(StringBuffer sb1, StringBuffer sb2)方法时,将其中的形式参数换个写法,比如sb1,sb2改成x,y这样好理解一点。main方法中调用该方法时,将sb1指向的地址赋给x,sb2指向的地址赋给y,方法体为:

        x=y;//将y的地址赋给x,此时x和sb2指向同一内存空间,里面放的是"world"

        y.append(x);//拼接后y和sb2指向的内容变成"worldworld"

sb1指向的地址一值没变,其内存空间里放的"hello"也没做别的操作,所以调用结果是hello---worldworld


第一次发帖,有理解不对的地方还请各位高手指正



你可能感兴趣的:(java基础,String)