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