斯卡拉字节/(x:双):双
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。 /(x:Double) 方法用于返回该值与 x 的商。
Method Definition: Byte /(x: Double): Double
Return Type: It returns the quotient of this value and 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 = (64.toByte)./(12:Double)
// Displays output
println(result)
}
}
输出:
5.33333333
示例 #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 = (125.toByte)./(11:Double)
// Displays output
println(result)
}
}
输出:
11.363636363636363