Scala Long !=(x: Double)方法及示例
在Scala中,Long是一个64位有符号整数,相当于Java的long原始类型。 ! = (x: Double) 方法是用来检查给定的Long值是否相等的。
方法定义 – def !=(x: Double):Boolean
返回 – 如果该值不等于x,则返回真,否则返回假。
例子 #1 :
// 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 = (10).toLong.!=(10)
// Displays output
println(result)
}
}
输出
false
例子#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 = 1186000000.toLong.!= (1296000)
// Displays output
println(result)
}
}
输出
true