Scala Set max() 方法与示例
max()方法用于查找集合中所有元素中的最大元素。
Method Definition: def max: A
Return Type: It returns the largest of all the elements in the set.
示例 #1:
// Scala program of max()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(5, 11, 23, 72, 14)
// Applying max method
val result = s1.max
// Display output
println(result)
}
}
输出:
72
示例 #2:
// Scala program of max()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a set
val s1 = Set(5, 11, 23, 72, 14, 21, 118)
// Applying max method
val result = s1.max
// Display output
println(result)
}
}
输出:
118