Método inmutable TreeSet isEmpty() de Scala

En Scala, la clase TreeSet inmutable isEmpty() se utiliza para comprobar si el TreeSet está vacío o no.

Definición del método: def isEmpty: booleano

Tipo de retorno: Devuelve verdadero si el TreeSet está vacío o de lo contrario devuelve falso.

Ejemplo 1:

// Scala program of isEmpty() 
// 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 isEmpty method  
        val result = q1.isEmpty  
            
        // Displays output  
        print("TreeSet is empty: " + result) 
          
    } 
} 
Producción:

TreeSet(1, 2, 3, 4, 5)
TreeSet is empty: false

Ejemplo #2:

// Scala program of isEmpty() 
// method 
  
// Import TreeSet
import scala.collection.immutable._
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
      
        // Creating TreeSet
        val q1 = TreeSet[Int]()  
            
        // Print the TreeSet 
        println(q1) 
          
        // Applying isEmpty method  
        val result = q1.isEmpty  
            
        // Displays output  
        print("TreeSet is empty: " + result) 
          
    } 
} 
Producción:

TreeSet()
TreeSet is empty: true

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 *