Java StringBuffer.append(Object obj)
Syntax
StringBuffer.append(Object obj) has the following syntax.
public StringBuffer append(Object obj)
Example
In the following code shows how to use StringBuffer.append(Object obj) method.
public class Main {
//from w ww . j av a2s. com
public static void main(String[] arg) {
StringBuffer buffer = new StringBuffer();
Object o= "from java2s.com";
buffer.append(o);
System.out.println(buffer);
}
}
The code above generates the following result.