📜  斯卡拉字节-(x:双):双

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

斯卡拉字节-(x:双):双

在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。方法 -(x:Double) 方法用于返回此值与 x 的差

示例 #1:

// Scala program of Byte -(x: Double)
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying Byte -(x: Double) function 
        val result = (167.toByte).-(125:Double) 
          
        // Displays output 
        println(result) 
      
    } 
} 

输出:

-213.0

示例 #2:

// Scala program of Byte -(x: Double)
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Applying Byte -(x: Double) function 
        val result = (128.toByte).-(2:Double) 
          
        // Displays output 
        println(result) 
      
    } 
} 

输出:

-130.0