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