The toString() method of StringBuilder class is the inbuilt method used to returns a string representing the data contained by StringBuilder Object. A new String object is created and initialized to get the character sequence from this StringBuilder 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 StringBuilder Object.
Below programs illustrate the StringBuilder.toString() method:
Example 1:
// Java program to demonstrate // the toString() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder( "GeeksForGeeks" ); // print string System.out.println( "String contains = " + str.toString()); } } |
String contains = GeeksForGeeks
Example 2:
// Java program to demonstrate // the toString() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder( "Geeks for Geeks contribute" ); // print string System.out.println( "String contains = " + str.toString()); } } |
String contains = Geeks for Geeks contribute
References:
https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#toString()
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready. To complete your preparation from learning a language to DS Algo and many more, please refer Complete Interview Preparation Course.