Método Scala TreeSet size() con ejemplo

El método size() se utiliza para devolver el número de elementos presentes en el TrreSet.

Definición del método: tamaño def: Int

Tipo de retorno: Devuelve el número de elementos presentes en el TreeSet.

Ejemplo 1:

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

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

Ejemplo #2:

// Scala program of size() 
// method 
  
// Import TreeSet
import scala.collection.mutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val t1 = TreeSet(3, 1, 5, 2, 4, 10, 6, 9, 7, 8)  
            
        // Print the TreeSet 
        println(t1) 
          
        // Applying size method  
        val result = t1.size
            
        // Displays output  
        print("Size of the TreeSet: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
Size of the TreeSet: 10

Publicación traducida automáticamente

Artículo escrito por rupesh_rao 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 *