Scala Short toShort() 方法
简而言之,一个 16 位有符号整数(相当于 Java 的 short 原始类型)是 scala.AnyVal 的子类型。 toShort() 方法用于将指定的数字转换为 Short 数据类型值。
Method Definition: (Number).toShort
Return Type: It returns converted Short value.
示例 #1:
// Scala program of Short toShort()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toShort method
val result = (13).toShort
// Displays output
println(result)
}
}
输出:
13
示例 #2:
// Scala program of Short toShort()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toShort method
val result = (123.4).toShort
// Displays output
println(result)
}
}
输出:
123