A="a";(一个)
B="b":(一个)
A=A+B;(一个:是新的对象)
StringBuffer D=new StringBuffer("abc");(一个)
D=D.append("567");(在上一个对象上进行操作)