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 verificar si los valores Double y Char dados son iguales entre sí o no.
Definición del método – def !=(x: Char): booleano
Devoluciones: devuelve verdadero si este valor no es igual a x, de lo contrario, devuelve falso.
Ejemplo 1:
// Scala program to explain working // of Double !=(x: Char) function // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying !=(x: Char) function val result = (66.01230).toDouble.!= ('B':Char) // Displays output println(result) } }
Producción:
true
Ejemplo #2:
// Scala program to explain working // of Double !=(x: Char) function // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying !=(x: Char) function val result = 11.86000000.toDouble.!= ('Z':Char) // Displays output println(result) } }
Producción:
true