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