StringBuilder() constructor from StringBuilder has the following syntax.
public StringBuilder()
In the following code shows how to use StringBuilder.StringBuilder() constructor.
public class Main { public static void main(String[] args) { StringBuilder sb = new StringBuilder(); System.out.println(sb.capacity()); } }
The code above generates the following result.