Open In App

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

Last Updated : 02 Nov, 2019
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: Double) method is utilized to check whether the given Double value is equal to each other or not.

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

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

Example #1:




// Scala program to explain working 
// of Double !=(x: Double) function
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying !=(x: Double) function
        val result = (10.1234500).toLong.!=(10:Double)
          
        // Displays output
        println(result)
      
    }


Output:

false

Example #2:




// Scala program to explain working
// of Long !=(x: Double) function
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying !=(x: Double) function
        val result = 11.86000000.toLong.!= (1296000:Double)
          
        // Displays output
        println(result)
      
    }


Output:

true


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads