Scala SortedSet max() 方法示例
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.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(5, 11, 23, 72, 14)
// Applying max method
val result = s1.max
// Display output
println(result)
}
}
输出:
72
示例 #2:
// Scala program of max()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a SortedSet
val s1 = SortedSet(5, 11, 23, 72, 14, 21, 118)
// Applying max method
val result = s1.max
// Display output
println(result)
}
}
输出:
118