Scala 字节 *(x: Float): Float
在 Scala 中,Byte 是一个 8 位有符号整数(相当于 Java 的 byte 原始类型)。方法 *(x:Float) 方法用于返回该值与 x 的乘积。
Method Definition: Byte *(x: Float): Float
Return Type: It returns the product of this value and 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)
}
}
输出:
768.0
示例 #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 = (17.toByte).*(128:Float)
// Displays output
println(result)
}
}
输出:
2176.0