Open In App

Scala Int toString() method with example

Last Updated : 04 Feb, 2020
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
The toString() method is utilized to return the string representation of the specified value.
Method Definition: def toString(): String Return Type: It returns the string representation of the specified value.
Example #1: Scala
// Scala program of Int toString()
// method 

// Creating object 
object GfG 
{ 

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

// Creating object 
object GfG 
{ 

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

Article Tags :

Similar Reads