El método toString() se utiliza para devolver la representación de string del valor especificado.
Definición del método: def toString(): String
Tipo de retorno: Devuelve la representación de string del valor especificado.
Ejemplo 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) } }
Producción:
65
Ejemplo #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) } }
Producción:
1515
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA