Método Scala Mutable SortedSet max()

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

Publicación traducida automáticamente

Artículo escrito por Shivam_k y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *