📜  Scala Set isEmpty() 方法与示例

📅  最后修改于: 2022-05-13 01:54:28.017000             🧑  作者: Mango

Scala Set isEmpty() 方法与示例

isEmpty()方法用于测试集合是否为空。

示例 #1:

// Scala program of isEmpty() 
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a set 
        val s1 = Set(1, 2, 3, 4, 5) 
          
        // Applying isEmpty method 
        val result = s1.isEmpty
          
        // Display output
        println(result)
    } 
} 
输出:
false

示例 #2:

// Scala program of isEmpty() 
// method 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a set 
        val s1 = Set() 
          
        // Applying isEmpty method 
        val result = s1.isEmpty
          
        // Display output
        println(result)
    } 
} 
输出:
true