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