位置:首頁 > Java技術 > Java.util包 > java.util.TreeSet.isEmpty()方法實例

java.util.TreeSet.isEmpty()方法實例

isEmpty() 方法被調用,如果這個set不包含任何元素,則返回true。

聲明

以下是java.util.TreeSet.isEmpty()方法的聲明。

public boolean isEmpty()

參數

  • NA

返回值

如果此set不包含任何元素,方法調用返回true。

異常

  • NA

例子

下麵的例子展示java.util.TreeSet.isEmpty()方法的使用。

package com.yiibai;

import java.util.TreeSet;

public class TreeSetDemo {
   public static void main(String[] args) {
     // creating a TreeSet 
     TreeSet <Integer>treeadd = new TreeSet<Integer>();
     
     // checking tree set
     System.out.println("Is the tree set empty: "+treeadd.isEmpty()); 
     
     // adding elements in the tree set
     System.out.println("Adding elements in the tree set"); 
     treeadd.add(12);
     treeadd.add(11);
     treeadd.add(16);
     treeadd.add(15);
     
     // checking tree set again
     System.out.println("Is the tree set empty: "+treeadd.isEmpty());  
   }     
}

現在編譯和運行上麵的代碼示例,將產生以下結果。

Is the tree set empty: true
Adding elements in the tree set
Is the tree set empty: false