Scala Int toString() method with example
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
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.