带有示例的 Scala Short longValue() 方法
longValue()方法用于查找所述 Short 类型的 Long 值。
Method Definition: def longValue(): Long
Return Type: It returns Long.
示例:1#
// Scala program of longValue()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying longValue() method
val result = (1000).longValue
// Displays output
println(result)
}
}
输出:
1000
示例:2#
// Scala program of longValue()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying longValue() method
val result = (899).longValue
// Displays output
println(result)
}
}
输出:
899