Scala Mutable SortedSet product() 方法
在 Scala 可变集合中,SortedSet product()方法用于查找 SortedSet 的所有元素的乘积。
Method Definition: def product: A
Return Type: It returns the product of all the elements of the SortedSet.
示例 #1:
// Scala program of product()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(2, 3)
// Applying product method
val result = s1.product
// Display output
println(result)
}
}
输出:
6
示例 #2:
// Scala program of product()
// method
import scala.collection.mutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(5, 4, 3, 2, 1)
// Applying product method
val result = s1.product
// Display output
println(result)
}
}
输出:
120