StringBuffer(String str) constructor from StringBuffer has the following syntax.
public StringBuffer(String str)
In the following code shows how to use StringBuffer.StringBuffer(String str) constructor.
public class Main { /*w ww . j av a 2 s.c o m*/ public static void main(String[] arg) { String phrase = "abced"; StringBuffer buffer = new StringBuffer(phrase); System.out.println(buffer); } }
The code above generates the following result.