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


Java java.util.TreeSet.isEmpty()用法及代码示例



描述

这个isEmpty()如果此集合不包含任何元素,则使用方法返回 true。

声明

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

public boolean isEmpty()

参数

NA

返回值

如果此集合不包含任何元素,则方法调用返回 true。

异常

NA

示例

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

package com.tutorialspoint;

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

相关用法


注:本文由纯净天空筛选整理自 java.util.TreeSet.isEmpty() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。