当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。