Open In App

Scala Int toString() method with example

Last Updated : 04 Feb, 2020
Improve
Improve
Like Article
Like
Save
Share
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 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 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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads