StringBuffer.append(Object obj) has the following syntax.
public StringBuffer append(Object obj)
In the following code shows how to use StringBuffer.append(Object obj) method.
public class Main { /*from w w w . j a v a2 s.c o m*/ 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.