Open In App

Scala Double !=(x: Long) 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: Long) method is utilized to check whether the given Double and long value are equal to each other or not.

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

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

Example #1:




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


Output:

true

 

Example #2:




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


Output:

true


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads