Java Data Type Tutorial - Java StringBuffer.toString()








Syntax

StringBuffer.toString() has the following syntax.

public String toString()

Example

In the following code shows how to use StringBuffer.toString() method.

public class Main {
  public static void main(String[] argv) {
    StringBuffer sb = new StringBuffer();
    sb.append("java2s.com");
    System.out.println(sb.toString());
  }
}

The output: