Método Scala Mutable SortedSet last()

En las colecciones mutables de Scala, el método last() se utiliza para devolver el último elemento del SortedSet.

Definición del método: def last: A

Tipo de retorno: Devuelve el último elemento del SortedSet.

Ejemplo 1:

// Scala program of last() 
// 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, 3, 4) 
          
        // Applying last method 
        val result = s1.last
          
        // Display output
        println(result)
    } 
} 
Producción:

4

Ejemplo #2:

// Scala program of last() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet("geeks", "for", "geeks", "classes") 
          
        // Applying last method 
        val result = s1.last
          
        // Display output
        println(result)
    } 
} 
Producción:

geeks

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 *