Scala Float !=(x: Double) 方法与示例
!=(x: Double)方法用于检查给定的浮点数和双精度值是否相等。
Method Definition: (Float_Value)!=(x: Double)
Return Type: It returns true if the given float and double value is not equal to each other, otherwise return false.
示例 #1:
// Scala program of Float !=(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Double) function
val result = (12).!=(12)
// Displays output
println(result)
}
}
输出:
false
示例 #2:
// Scala program of Float !=(x: Double)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Double) function
val result = (10).!=(2232)
// Displays output
println(result)
}
}
输出:
true