Monday, October 6, 2025
HomeLanguagesJavaStringBuffer toString() method in Java with Examples

StringBuffer toString() method in Java with Examples

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:




// Java program to demonstrate
// the toString() Method.
  
class GFG {
    public static void main(String[] args)
    {
  
        // create a StringBuffer object
        // with a String pass as parameter
        StringBuffer str
            = new StringBuffer("GeeksForGeeks");
  
        // print string
        System.out.println("String contains = "
                           + str.toString());
    }
}


Output:

String contains = GeeksForGeeks

Example 2:




// Java program to demonstrate
// the toString() Method.
  
class GFG {
    public static void main(String[] args)
    {
  
        // create a StringBuffer object
        // with a String pass as parameter
        StringBuffer str
            = new StringBuffer(
                "Geeks for Geeks contribute");
  
        // print string
        System.out.println("String contains = "
                           + str.toString());
    }
}


Output:

String contains = Geeks for Geeks contribute

References:
https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuffer.html#toString()

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32338 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6825 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6781 POSTS0 COMMENTS