當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java SortedSet isEmpty()用法及代碼示例


java.util.SortedSet.isEmpty()方法用於檢查SortedSet是否為空。如果SortedSet為空,則返回True,否則返回False。

用法:

boolean isEmpty()

參數:此方法不帶任何參數。


返回值:如果SortedSet為空,則該方法返回True,否則返回False。

注意:SortedSet中的isEmpty()方法是從Java中的Set接口繼承的。

以下示例程序旨在說明java.util.SortedSet.isEmpty()方法:

// Java code to illustrate isEmpty() 
  
import java.io.*; 
import java.util.*; 
  
public class SortedSetDemo { 
    public static void main(String args[]) 
    { 
        // Creating an empty Set 
        SortedSet<String> set 
            = new TreeSet<String>(); 
  
        // Use add() method to 
        // add elements into the Set 
        set.add("Welcome"); 
        set.add("To"); 
        set.add("Geeks"); 
        set.add("4"); 
        set.add("Geeks"); 
  
        // Displaying the Set 
        System.out.println("Set: " + set); 
  
        // Check for the empty set 
        System.out.println("Is the set empty? "
                           + set.isEmpty()); 
  
        // Clearing the set using clear() method 
        set.clear(); 
  
        // Again Checking for the empty set 
        System.out.println("Is the set empty? "
                           + set.isEmpty()); 
    } 
}
輸出:
Set: [4, Geeks, To, Welcome]
Is the set empty? false
Is the set empty? true

參考: https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#isEmpty()



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 SortedSet isEmpty() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。