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 el cociente de este valor y x.
Definición del Método: Byte /(x: Char): Int
Tipo de Retorno: Devuelve el cociente de este valor y 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 = (128.toByte)./('G':Char) // Displays output println(result) } }
Producción:
-1
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 = (325.toByte)./('A':Char) // Displays output println(result) } }
Producción:
1