Scala Double !=(x: Float) 方法与示例
在 Scala 中,Double 是一个 64 位浮点数,相当于 Java 的 double 基本类型。 !=(x: Float)方法用于检查给定的 Double 值和浮点数是否相等。
Method Definition – def !=(x: Float): Boolean
Returns – Returns true if this value is not equal to x, false otherwise.
示例 #1:
Scala
// Scala program to explain working
// of Double !=(x: Float) function
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Float) function
val result = (10.001254).toDouble.!=(10:Float)
// Displays output
println(result)
}
}
Scala
// Scala program to explain working
// of Double !=(x: Float) function
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Float) function
val result = 11.86000000.toDouble.!= (1296000.5)
// Displays output
println(result)
}
}
输出:
true
示例 #2:
斯卡拉
// Scala program to explain working
// of Double !=(x: Float) function
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying !=(x: Float) function
val result = 11.86000000.toDouble.!= (1296000.5)
// Displays output
println(result)
}
}
输出:
true