El método toChar() se utiliza para convertir el número int especificado en un valor de tipo char.
Definición del método: (Número).toChar
Tipo de devolución: devuelve el valor del tipo de datos char convertido.
Ejemplo 1:
// Scala program of Int toChar() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toChar method val result = (64).toChar // Displays output println(result) } }
Producción:
@
Ejemplo #2:
// Scala program of Int toChar() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toChar method val result = (68).toChar // Displays output println(result) } }
Producción:
D
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