简短的说,一个16位带符号整数(相当于Java的短基本类型)是scala.AnyVal的子类型。 toLong()方法用于将指定的数字转换为Long数据类型值。
函数定义: (Number).toLong
返回类型: It returns converted Long value.
范例1:
// Scala program of Short toLong()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toLong method
val result = (13).toLong
// Displays output
println(result)
}
}
输出:
13
范例2:
// Scala program of Short toLong()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toLong method
val result = (123.4).toLong
// Displays output
println(result)
}
}
输出:
123
相关用法
- Scala Int toLong()用法及代码示例
- Scala Float toLong()用法及代码示例
- Scala Char toLong()用法及代码示例
- Scala Byte toLong()用法及代码示例
注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Scala Short toLong() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。