Java StringBuilder.toString()
Syntax
StringBuilder.toString() has the following syntax.
public String toString()
Example
In the following code shows how to use StringBuilder.toString() method.
public class Main {
public static void main(String[] argv) {
StringBuilder sb = new StringBuilder();
sb.append("java2s.com");
System.out.println(sb.toString());/* w w w . jav a2 s . co m*/
}
}
The output: