📜  带有示例的 Scala Float -(x: Byte) 方法

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

带有示例的 Scala Float -(x: Byte) 方法

-(x:Byte)方法用于返回指定的浮点值和字节值的差。

示例 #1:

// Scala program of Float -(x: Byte)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying -(x: Byte) function
        val result = (100.0).-(50)
          
        // Displays output
        println(result)
      
    }
} 
输出:
50.0

示例 #2:

// Scala program of Float -(x: Byte)
// method
  
// Creating object
object GfG
{ 
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying -(x: Byte) function
        val result = (70.0).-(30)
          
        // Displays output
        println(result)
      
    }
} 
输出:
40.0