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