Java String(StringBuffer buffer) Constructor
Syntax
String(StringBuffer buffer) constructor from String has the following syntax.
public String(StringBuffer buffer)
Example
In the following code shows how to use String.String(StringBuffer buffer) constructor.
//from ww w .j a v a 2 s. co m
public class Main {
public static void main(String[] argv) {
StringBuffer sb = new StringBuffer();
sb.append("java2s.com");
System.out.println(new String(sb));
}
}
The code above generates the following result.