Open In App

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

Last Updated : 02 Nov, 2019
Summarize
Comments
Improve
Suggest changes
Share
Like Article
Like
Report
In Scala, Long is a 64-bit signed integer, which is equivalent to Java's long primitive type. The !=(x: Int) method is utilized to check whether the given Long and int value are equal to each other or not.
Method Definition - def !=(x: Int): Boolean Returns - Returns true if this value is not equal to x, false otherwise.
Example #1: SCALA
// Scala program to explain working 
// of Long !=(x: Int) function

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying !=(x: Int) function
        val result = (10).toLong.!= (10:Int)
        
        // Displays output
        println(result)
    
    }
} 
Output:
false
  Example #2: SCALA
// Scala program to explain working
// of Long !=(x: Int) function

// Creating object
object GfG
{ 

    // Main method
    def main(args:Array[String])
    {
    
        // Applying !=(x: Int) function
        val result = 1186000000.toLong.!= (1296:Int)
        
        // Displays output
        println(result)
    
    }
} 
Output:
true

Article Tags :

Similar Reads