I have been using String to do the following.
String x = "a";
String y = "b";
String z = y+""+x;
x = y;
y = z;
So the final values of x and y are b and ba. I tried to use StringBuffer.
StringBuffer x = new StringBuffer("a");
StringBuffer y = new StringBuffer("b");
StringBuffer z = new StringBuffer();
z = y+""+x; //???
API provides append function but it doesn't do what concatenation does. Is there a equivalent for concatenation in StringBuffer class?
appendmethod? Just chain-append:new Stringbuffer("a").append(" ").append("b");– Aleks G Sep 12 '11 at 15:06StringBuffer#append()is pretty much analogous to string concatenation. – Matt Ball Sep 12 '11 at 15:10