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