📜  Scala Double !=(x: Double) 方法示例

📅  最后修改于: 2022-05-13 01:55:09.637000             🧑  作者: Mango

Scala Double !=(x: Double) 方法示例

在 Scala 中,Double 是一个 64 位浮点数,相当于 Java 的 double 基本类型。 !=(x: Double)方法用于检查给定的 Double 值是否彼此相等。

示例 #1:

// Scala program to explain working 
// of Double !=(x: Double) function
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying !=(x: Double) function
        val result = (10.1234500).toLong.!=(10:Double)
          
        // 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 = 11.86000000.toLong.!= (1296000:Double)
          
        // Displays output
        println(result)
      
    }
} 
输出:
true