📜  Scala字节/(x:浮点数):浮点数

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

Scala字节/(x:浮点数):浮点数

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

示例 #1:

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

输出:

5.3333335

示例 #2:

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

输出:

11.363636