El método asDigit() se utiliza para representar caracteres en forma de dígito.
Definición del método: def asDigit: Int
Tipo de retorno: Devuelve Int.
Ejemplo 1#
// Scala program of asDigit() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying asDigit() method val result = 'A'.asDigit // Displays output println(result) } }
Producción:
10
Ejemplo: 2#
// Scala program of asDigit() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying asDigit() method val result = 'E'.asDigit // Displays output println(result) } }
Producción:
14
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA