El método toByte() se utiliza para convertir un carácter indicado en el tipo Bytes.
Definición del método: def toByte: Byte
Tipo de Retorno: Devuelve Bytes del caracter indicado.
Ejemplo 1#
// Scala program of toByte() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toByte method val result = 'A'.toByte // Displays output println(result) } }
Producción:
65
Ejemplo: 2#
// Scala program of toByte() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toByte method val result = 'a'.toByte // Displays output println(result) } }
Producción:
97
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA