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