En las colecciones mutables de Scala, el método max() se utiliza para encontrar el elemento más grande de todos los elementos en SortedSet.
Definición del método: def max: A
Tipo de retorno: Devuelve el mayor de todos los elementos del SortedSet.
Ejemplo 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) } }
Producción:
7
Ejemplo #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) } }
Producción:
458