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