Java StringBuffer(String str) Constructor
Syntax
StringBuffer(String str) constructor from StringBuffer has the following syntax.
public StringBuffer(String str)
Example
In the following code shows how to use StringBuffer.StringBuffer(String str) constructor.
public class Main {
//from w w w . j a va 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.