Open In App

Scala String toString() method with example

Last Updated : 29 Oct, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The toString() method is utilized to return a string object itself.
Method Definition: String toString() Return Type: It returns the string object.
Example: 1# Scala
// Scala program of toString()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying toString method
        val result = "GEEKS".toString()
        
        // Displays output
        println(result)
    
    }
} 
Output:
GEEKS
Example: 2# Scala
// Scala program of toString()
// method

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying toString method
        val result = "10".toString()
        
        // Displays output
        println(result)
        
    }
} 
Output:
10

Next Article

Similar Reads