Scala 短 /(x: Byte): Int
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。 /(x:Byte) 方法用于返回 x 对指定 Byte 值的商运算的结果。
Method Definition: def /(x: Byte): Int
Return Type: It returns quotient with value and x.
示例 #1:
// Scala program of Short /(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short /(x: Byte) function
val result = (998.toShort)./(20:Byte)
// Displays output
println(result)
}
}
输出:
49
示例 #2:
// Scala program of Short /(x: Byte)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying Short /(x: Byte) function
val result = (-111.toShort)./(47:Byte)
// Displays output
println(result)
}
}
输出:
-2