Open In App

Scala Long !=(x: Short) method with example

Improve
Improve
Like Article
Like
Save
Share
Report

In Scala, Long is a 64-bit signed integer, which is equivalent to Java’s long primitive type. The !=(x: Short) method is utilized to check whether the given Long and Short value are equal to each other or not.

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

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

Example #1:




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


Output:

false

 

Example #2:




// Scala program to explain working
// of Long !=(x: Short) function
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying !=(x: Short) function
        val result = 1186000000.toLong.!= (16:Short)
          
        // 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