En Scala, Double es un número de punto flotante de 64 bits, que es equivalente al tipo primitivo doble de Java. El método /(x: Char) se utiliza para devolver el cociente de este valor y el valor dado x.
Definición del método – def /(x: Char): Doble
Devoluciones: devuelve el cociente de este valor y x.
Ejemplo 1:
// Scala program to explain the working // of Double /(x: Char) method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying /(x: Int) function val result = (172.0021.toDouble)./('A':Char) // Displays output println(result) } }
Producción:
2.646186153846154
Ejemplo #2:
// Scala program to explain the working // of Double /(x: Char) method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying /(x: Char) function val result = (116.0123.toDouble)./('G':Char) // Displays output println(result) } }
Producción:
1.6339760563380281