VOOZH about

URL: https://www.geeksforgeeks.org/java/stringbuffer-tostring-method-in-java-with-examples/

⇱ StringBuffer toString() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

StringBuffer toString() method in Java with Examples

Last Updated : 4 Dec, 2018
The toString() method of StringBuffer class is the inbuilt method used to returns a string representing the data contained by StringBuffer Object. A new String object is created and initialized to get the character sequence from this StringBuffer object and then String is returned by toString(). Subsequent changes to this sequence contained by Object do not affect the contents of the String. Syntax:
public abstract String toString()
Return Value: This method returns the String representing the data contained by StringBuffer Object. Below programs illustrate the StringBuffer.toString() method: Example 1:
Output:
String contains = GeeksForGeeks
Example 2:
Output:
String contains = Geeks for Geeks contribute
References: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#toString()
Comment