En Scala, Byte es un entero con signo de 8 bits (equivalente al tipo primitivo byte de Java). El método -(x:Char) se utiliza para devolver la diferencia de este valor por x
Definición del Método: Byte -(x: Char): Int
Tipo de Devolución: Devuelve la diferencia de este valor por x.
Ejemplo 1:
// Scala program of Byte -(x: Char) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte -(x: Char) function val result = (156.toByte).-('C':Char) // Displays output println(result) } }
Producción:
-167
Ejemplo #2:
// Scala program of Byte -(x: Char) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte -(x: Char) function val result = (121.toByte).-('G':Char) // Displays output println(result) } }
Producción:
50