Java Data Type Tutorial - 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   w  ww  .  j  a  v a2s.  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.