Scala inmutable TreeSet last() método

En Scala, el método inmutable de la clase TreeSet last() se utiliza para devolver el último elemento del TreeSet.

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

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

Ejemplo 1:

// Scala program of last() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet(1, 2, 3, 4, 5)  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying last method  
        val result = q1.last  
            
        // Displays output  
        print("Last element of the TreeSet: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
Last element of the TreeSet: 5

Ejemplo #2:

// Scala program of last() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet("u", "a", "i", "o", "e") 
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying last method  
        val result = q1.last  
            
        // Displays output  
        print("Last element of the TreeSet: " + result) 
          
    } 
} 
Producción:

TreeSet(a, e, i, o, u)
Last element of the TreeSet: u

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 *