Open In App

Scala Double !=(x: Char) method with example

Improve
Improve
Like Article
Like
Save
Share
Report

In Scala, Double is a 64-bit floating point number, which is equivalent to Java’s double primitive type. The !=(x: Char) method is utilized to check whether the given Double and Char value are equal to each other or not.

Method Definition – def !=(x: Char): Boolean

Returns – Returns true if this value is not equal to x, false otherwise.

Example #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)
      
    }


Output:

true

 

Example #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)
      
    }


Output:

true


Last Updated : 02 Nov, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads